Example #1
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentXAreaIncharge using Village id from Database.
 /// </summary>
 public static List <DepartmentXAreaIncharge> GetAllForVillage(int villageId)
 {
     return(DepartmentXAreaInchargeDA.GetAllForVillage(villageId));
 }
Example #2
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentXAreaIncharge using city id from Database.
 /// </summary>
 public static List <DepartmentXAreaIncharge> GetAllForCity(int cityId)
 {
     return(DepartmentXAreaInchargeDA.GetAllForCity(cityId));
 }
Example #3
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentXAreaIncharge using State id from Database.
 /// </summary>
 public static List <DepartmentXAreaIncharge> GetAllForState(int stateId)
 {
     return(DepartmentXAreaInchargeDA.GetAllForState(stateId));
 }
Example #4
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentXAreaIncharge using department id from Database.
 /// </summary>
 public static List <DepartmentXAreaIncharge> GetAllForDepartment(int departmentId)
 {
     return(DepartmentXAreaInchargeDA.GetAllForDepartment(departmentId));
 }
Example #5
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentXAreaIncharge using locality id from Database.
 /// </summary>
 public static List <DepartmentXAreaIncharge> GetAllForLocality(int localityId)
 {
     return(DepartmentXAreaInchargeDA.GetAllForLocality(localityId));
 }
Example #6
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentXAreaIncharge from Database.
 /// </summary>
 public static List <DepartmentXAreaIncharge> GetAll()
 {
     return(DepartmentXAreaInchargeDA.GetAll());
 }
Example #7
0
 /// <summary>
 /// This Function is used to get Details of the DepartmentXAreaIncharge from Database.
 /// </summary>
 public static DepartmentXAreaIncharge GetDetails(int id)
 {
     return(DepartmentXAreaInchargeDA.GetDetails(id));
 }
Example #8
0
 /// <summary>
 /// This Function is used to Delete previously added DepartmentXAreaIncharge from database and is performed by SuperAdmin Only.
 /// </summary>
 public static bool Delete(DepartmentXAreaIncharge info)
 {
     return(DepartmentXAreaInchargeDA.Delete(info));
 }
Example #9
0
 /// <summary>
 /// This Function is used to Update previously added DepartmentXAreaIncharge in database and is performed by SuperAdmin Only.
 /// </summary>
 public static bool Update(DepartmentXAreaIncharge info)
 {
     return(DepartmentXAreaInchargeDA.Update(info));
 }
Example #10
0
 /// <summary>
 /// This Function is used to add new DepartmentXAreaIncharge to database and is performed by SuperAdmin Only.
 /// </summary>
 public static bool Add(DepartmentXAreaIncharge info)
 {
     return(DepartmentXAreaInchargeDA.Add(info));
 }