/// <summary>
 /// Create report about result session
 /// </summary>
 /// <param name="path">Path and file name</param>
 public static void CreateResultSessionListExcel(string path = "ResultSession.xlsx")
 {
     CreateExcelDifferentColumn(CreateList.ResultSession(), path, 5);
 }
 /// <summary>
 /// Create report aboud min/middle/max grades
 /// </summary>
 /// <param name="path">Path and file name</param>
 public static void CreateMiddleGradesListExcel(string path = "MiddleGrades.xlsx")
 {
     CreateExcelDifferentColumn(CreateList.MiddleGrades(), path, 4);
 }
 /// <summary>
 /// Create report about examiner grades
 /// </summary>
 /// <param name="path">Path and file name</param>
 public static void CreateExaminerListExcel(string path = "Examiner.xlsx")
 {
     CreateExcelDifferentColumn(CreateList.ExaminerGrades(), path, 2);
 }
 /// <summary>
 /// Create report about specialty grades
 /// </summary>
 /// <param name="path">Path and file name</param>
 public static void CreateSpecialtyListExcel(string path = "Specialty.xlsx")
 {
     CreateExcelDifferentColumn(CreateList.SpecialtyGrades(), path, 2);
 }
 /// <summary>
 /// Create report about out students
 /// </summary>
 /// <param name="path">Path and file name</param>
 public static void CreateOutStudentsListExcel(string path = "OutStudents.xlsx")
 {
     CreateExcelDifferentColumn(CreateList.OutStudents(), path, 2);
 }