Ejemplo n.º 1
0
 public int Update()
 {
     objVehicle_DAL = new Vehicle_DAL(property);
     return(objVehicle_DAL.Update());
 }
Ejemplo n.º 2
0
 public int Insert()
 {
     objVehicle_DAL = new Vehicle_DAL(property);
     return(objVehicle_DAL.Insert());
 }
Ejemplo n.º 3
0
 public bool Delete()
 {
     objVehicle_DAL = new Vehicle_DAL(property);
     return(objVehicle_DAL.Delete());
 }
Ejemplo n.º 4
0
 public DataTable GetGrid(int pageIndex, int pageSize, out int recordCount)
 {
     objVehicle_DAL = new Vehicle_DAL(property);
     return(objVehicle_DAL.GetGrid(pageIndex, pageSize, out recordCount));
 }
Ejemplo n.º 5
0
 public DataTable ViewAll()
 {
     objVehicle_DAL = new Vehicle_DAL(property);
     return(objVehicle_DAL.SelectAll());
 }
Ejemplo n.º 6
0
 public DataTable SelectOne()
 {
     objVehicle_DAL = new Vehicle_DAL(property);
     return(objVehicle_DAL.SelectOne());
 }