public bool FindById(int Id) { using (objDAL = new FeeMasterRepo()) { return(objDAL.FindById(Id)); } }
public object DeleteFeeRegistrationDetail(FeeMasterCustomModel objModel) { using (objDAL = new FeeMasterRepo()) { return(objDAL.DeleteFeeRegistrationDetail(objModel)); } }
public object GetFeeMasterListing(FeeMasterCustomModel objModel) { using (objDAL = new FeeMasterRepo()) { return(objDAL.GetFeeMasterListing(objModel)); } }
public Response SaveFeeMasterDetails(FeeMasterCustomModel objModel) { using (objDAL = new FeeMasterRepo()) { return(objDAL.SaveFeeMasterDetails(objModel)); } }
public FeeMasterCustomModel GetById(int Id) { using (objDAL = new FeeMasterRepo()) { return(objDAL.GetById(Id)); } }