示例#1
0
 public Response SaveSchoolMasterDetails(SchoolMasterCustomModel objModel)
 {
     using (objDAL = new SchoolMasterRepo())
     {
         return(objDAL.SaveSchoolMasterDetails(objModel));
     }
 }
示例#2
0
 public object DeleteSchoolRegistrationDetail(SchoolMasterCustomModel objSchoolRegistrationModel)
 {
     using (objDAL = new SchoolMasterRepo())
     {
         return(objDAL.DeleteSchoolRegistrationDetail(objSchoolRegistrationModel));
     }
 }
示例#3
0
 /// <summary>
 /// This method is used to fetch All Kisan Market
 /// </summary>
 /// <returns></returns>
 ///
 public object GetSchoolMasterListing(SchoolMasterCustomModel objSchoolRegistrationModel)
 {
     using (objDAL = new SchoolMasterRepo())
     {
         return(objDAL.GetSchoolMasterListing(objSchoolRegistrationModel));
     }
 }