Esempio n. 1
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentEscalationLevel using department with its level from Database.
 /// </summary>
 public static List <DepartmentEscalationLevel> GetAllForDepartmentAndLevel(int departmentId, int levelNumber)
 {
     return(DepartmentEscalationLevelDA.GetAllForDepartmentAndLevel(departmentId, levelNumber));
 }
Esempio n. 2
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentEscalationLevel from Database.
 /// </summary>
 public static List <DepartmentEscalationLevel> GetAll()
 {
     return(DepartmentEscalationLevelDA.GetAll());
 }
Esempio n. 3
0
 /// <summary>
 /// This Function is used to get list of all the DepartmentEscalationLevel using department type from Database.
 /// </summary>
 public static List <DepartmentEscalationLevel> GetAllForDepartment(int departmentId)
 {
     return(DepartmentEscalationLevelDA.GetAllForDepartment(departmentId));
 }
Esempio n. 4
0
 public static DepartmentEscalationLevel GetDetailsByDepartmentId(int id, int LevelNumber)
 {
     return(DepartmentEscalationLevelDA.GetDetailsByDepartmentId(id, LevelNumber));
 }
Esempio n. 5
0
 /// <summary>
 /// This Function is used to get Details of the DepartmentEscalationLevel from Database.
 /// </summary>
 public static DepartmentEscalationLevel GetDetails(int id)
 {
     return(DepartmentEscalationLevelDA.GetDetails(id));
 }
Esempio n. 6
0
 /// <summary>
 /// This Function is used to Delete previously added DepartmentEscalationLevel from database and is performed by SuperAdmin Only.
 /// </summary>
 public static bool Delete(DepartmentEscalationLevel info)
 {
     return(DepartmentEscalationLevelDA.Delete(info));
 }
Esempio n. 7
0
 /// <summary>
 /// This Function is used to Update previously added DepartmentEscalationLevel in database and is performed by SuperAdmin Only.
 /// </summary>
 public static bool Update(DepartmentEscalationLevel info)
 {
     return(DepartmentEscalationLevelDA.Update(info));
 }
Esempio n. 8
0
 /// <summary>
 /// This Function is used to add new DepartmentEscalationLevel to database and is performed by SuperAdmin Only.
 /// </summary>
 public static bool Add(DepartmentEscalationLevel info)
 {
     return(DepartmentEscalationLevelDA.Add(info));
 }