Exemplo n.º 1
0
 public bool FindById(int Id)
 {
     using (objDAL = new BusChargesMasterRepo())
     {
         return(objDAL.FindById(Id));
     }
 }
Exemplo n.º 2
0
 public object DeleteBusChargesRegistrationDetail(BusChargesMasterCustomModel objModel)
 {
     using (objDAL = new BusChargesMasterRepo())
     {
         return(objDAL.DeleteBusChargesRegistrationDetail(objModel));
     }
 }
Exemplo n.º 3
0
 public object GetBusChargesMasterListing(BusChargesMasterCustomModel objModel)
 {
     using (objDAL = new BusChargesMasterRepo())
     {
         return(objDAL.GetBusChargesMasterListing(objModel));
     }
 }
Exemplo n.º 4
0
 public Response SaveBusChargesMasterDetails(BusChargesMasterCustomModel objModel)
 {
     using (objDAL = new BusChargesMasterRepo())
     {
         return(objDAL.SaveBusChargesMasterDetails(objModel));
     }
 }
Exemplo n.º 5
0
 public BusChargesMasterCustomModel GetById(int Id)
 {
     using (objDAL = new BusChargesMasterRepo())
     {
         return(objDAL.GetById(Id));
     }
 }