Javatpoint Logo

DriverServ

By: anomva*** On: Tue Jun 21 15:30:29 IST 2016     Question Reputation0 Answer Reputation0 Quiz Belt Series Points0  0Blank User
DriverService.java

package com.service;

import java.sql.SQLException;


import com.bean.Driver;
import com.dao.DriverDao;

public class DriverService {

public boolean add(Driver driver) throws SQLException
{
DriverDao ddao=new DriverDao();
return ddao.add(driver);
}

public Driver search(String name) throws SQLException
{
DriverDao ddao=new DriverDao();
return ddao.search(name);
}
}
Up0Down