Beispiel #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));
 }
Beispiel #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());
 }
Beispiel #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));
 }
Beispiel #4
0
 public static DepartmentEscalationLevel GetDetailsByDepartmentId(int id, int LevelNumber)
 {
     return(DepartmentEscalationLevelDA.GetDetailsByDepartmentId(id, LevelNumber));
 }
Beispiel #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));
 }
Beispiel #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));
 }
Beispiel #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));
 }
Beispiel #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));
 }