Example #1
0
 public int CancelAllocatedStudentSection(int Id)
 {
     using (objDAL = new SectionAllocationRepo())
     {
         return(objDAL.CancelAllocatedStudentSection(Id));
     }
 }
Example #2
0
 public int InsertStudentSectionAllocation(int SessionId, int ClassId, int EnquiryId, int AdmissionId, int SectionId, bool isactive, string status)
 {
     using (objDAL = new SectionAllocationRepo())
     {
         return(objDAL.InsertStudentSectionAllocation(SessionId, ClassId, EnquiryId, AdmissionId, SectionId, isactive, status));
     }
 }
Example #3
0
 public Response SaveSectionAllocationDetails(SectionAllocationCustomModel objModel)
 {
     using (objDAL = new SectionAllocationRepo())
     {
         return(objDAL.SaveSectionAllocationDetails(objModel));
     }
 }
Example #4
0
 public int GetTotalStudentInSection(int?SessionId, int?ClassId, int?SectionId)
 {
     using (objDAL = new SectionAllocationRepo())
     {
         return(objDAL.GetTotalStudentInSection(SessionId, ClassId, SectionId));
     }
 }
Example #5
0
 public object GetSectionAllocationListing(SectionAllocationCustomModel objModel)
 {
     using (objDAL = new SectionAllocationRepo())
     {
         return(objDAL.GetSectionAllocationListing(objModel));
     }
 }