コード例 #1
0
 public bool FindById(int Id)
 {
     using (objDAL = new FeeMasterRepo())
     {
         return(objDAL.FindById(Id));
     }
 }
コード例 #2
0
 public object DeleteFeeRegistrationDetail(FeeMasterCustomModel objModel)
 {
     using (objDAL = new FeeMasterRepo())
     {
         return(objDAL.DeleteFeeRegistrationDetail(objModel));
     }
 }
コード例 #3
0
 public object GetFeeMasterListing(FeeMasterCustomModel objModel)
 {
     using (objDAL = new FeeMasterRepo())
     {
         return(objDAL.GetFeeMasterListing(objModel));
     }
 }
コード例 #4
0
 public Response SaveFeeMasterDetails(FeeMasterCustomModel objModel)
 {
     using (objDAL = new FeeMasterRepo())
     {
         return(objDAL.SaveFeeMasterDetails(objModel));
     }
 }
コード例 #5
0
 public FeeMasterCustomModel GetById(int Id)
 {
     using (objDAL = new FeeMasterRepo())
     {
         return(objDAL.GetById(Id));
     }
 }