Example #1
0
 public static int Delete_Interview(int IQID, int RankID, int Deleted_By)
 {
     try
     {
         return(DAL_Crew_Interview.Delete_Interview_DL(IQID, RankID, Deleted_By));
     }
     catch
     {
         throw;
     }
 }
Example #2
0
 public static int UPDATE_Interview(int IQID, string Interview_Name, int RankID, int Modified_By)
 {
     try
     {
         return(DAL_Crew_Interview.UPDATE_Interview_DL(IQID, Interview_Name, RankID, Modified_By));
     }
     catch
     {
         throw;
     }
 }
Example #3
0
 public static DataTable Get_Interviews(int RankID, int UserID)
 {
     try
     {
         return(DAL_Crew_Interview.Get_Interviews_DL(RankID, UserID));
     }
     catch
     {
         throw;
     }
 }
Example #4
0
 public static DataTable Get_Interviews(string FilterName, int RankID, int UserID)
 {
     try
     {
         return(DAL_Crew_Interview.Get_Interviews_DL(FilterName, RankID, UserID));
     }
     catch
     {
         throw;
     }
 }
Example #5
0
 public static int UPDATE_GradingOption(int Option_ID, string OptionText, decimal OptionValue, int Modified_By)
 {
     try
     {
         return(DAL_Crew_Interview.UPDATE_GradingOption_DL(Option_ID, OptionText, OptionValue, Modified_By));
     }
     catch
     {
         throw;
     }
 }
Example #6
0
 public static int DELETE_GradingOptions(int Grade_ID, int Deleted_By)
 {
     try
     {
         return(DAL_Crew_Interview.DELETE_GradingOptions_DL(Grade_ID, Deleted_By));
     }
     catch
     {
         throw;
     }
 }
Example #7
0
 public static DataTable Get_GradingOptions(int Grade_ID)
 {
     try
     {
         return(DAL_Crew_Interview.Get_GradingOptions_DL(Grade_ID));
     }
     catch
     {
         throw;
     }
 }
Example #8
0
 public static int INSERT_GradingOption(int Grade_ID, string OptionText, decimal OptionValue, int Created_By)
 {
     try
     {
         return(DAL_Crew_Interview.INSERT_GradingOption_DL(Grade_ID, OptionText, OptionValue, Created_By));
     }
     catch
     {
         throw;
     }
 }
Example #9
0
 public static int INSERT_Grading(string Grading_Name, int Grade_Type, int Min, int Max, int Divisions, int Created_By)
 {
     try
     {
         return(DAL_Crew_Interview.INSERT_Grading_DL(Grading_Name, Grade_Type, Min, Max, Divisions, Created_By));
     }
     catch
     {
         throw;
     }
 }
Example #10
0
 public static int UPDATE_Grading(int ID, string Grading_Name, int Grading_Type, int Min, int Max, int Divisions, int Updated_By)
 {
     try
     {
         return(DAL_Crew_Interview.UPDATE_Grading_DL(ID, Grading_Name, Grading_Type, Min, Max, Divisions, Updated_By));
     }
     catch
     {
         throw;
     }
 }
Example #11
0
 public static DataTable Get_GradingList()
 {
     try
     {
         return(DAL_Crew_Interview.Get_GradingList_DL());
     }
     catch
     {
         throw;
     }
 }
Example #12
0
 public static int UPDATE_Category(int ID, string Category_Name, int Updated_By)
 {
     try
     {
         return(DAL_Crew_Interview.UPDATE_Category_DL(ID, Category_Name, Updated_By));
     }
     catch
     {
         throw;
     }
 }
Example #13
0
 public static int INSERT_Category(string Category_Name, int Created_By)
 {
     try
     {
         return(DAL_Crew_Interview.INSERT_Category_DL(Category_Name, Created_By));
     }
     catch
     {
         throw;
     }
 }
Example #14
0
 public static DataTable Get_CategoryList(string SearchText)
 {
     try
     {
         return(DAL_Crew_Interview.Get_CategoryList_DL(SearchText));
     }
     catch
     {
         throw;
     }
 }
Example #15
0
 public static int INS_Interview(string Interview_Name, int RankID, int CopyFrom, int Created_By, string InterviewType)
 {
     try
     {
         return(DAL_Crew_Interview.Create_Interview_DL(Interview_Name, RankID, CopyFrom, Created_By, InterviewType));
     }
     catch
     {
         throw;
     }
 }
Example #16
0
 public static int UPDATE_CrewInterviewAnswer(int InterviewID, int QuestionID, int SelectedOptionID, string Remarks, int NotApplicable, int Created_By)
 {
     try
     {
         return(DAL_Crew_Interview.UPDATE_CrewInterviewAnswer_DL(InterviewID, QuestionID, SelectedOptionID, Remarks, NotApplicable, Created_By));
     }
     catch
     {
         throw;
     }
 }
Example #17
0
 public static int DELETE_Criteria(int ID, int Deleted_By)
 {
     try
     {
         return(DAL_Crew_Interview.DELETE_Criteria_DL(ID, Deleted_By));
     }
     catch
     {
         throw;
     }
 }
Example #18
0
 public static int UPDATE_CrewInterviewPlanning(int InterviewID, string InterviewPlanDate, int PlannedInterviewerID, int InterviewRank, int Modified_By)
 {
     try
     {
         return(DAL_Crew_Interview.UPDATE_CrewInterviewPlanning_DL(InterviewID, InterviewPlanDate, PlannedInterviewerID, InterviewRank, Modified_By));
     }
     catch
     {
         throw;
     }
 }
Example #19
0
 public static int INSERT_Criteria(string Criteria, string Answer, int QuestionType, int CatID, int Grading_Type, int Created_By)
 {
     try
     {
         return(DAL_Crew_Interview.INSERT_Criteria_DL(Criteria, Answer, QuestionType, CatID, Grading_Type, Created_By));
     }
     catch
     {
         throw;
     }
 }
Example #20
0
 public static int UPDATE_Criteria(int ID, string Criteria, string Answer, int CatID, int Grading_Type, int Updated_By)
 {
     try
     {
         return(DAL_Crew_Interview.UPDATE_Criteria_DL(ID, Criteria, Answer, CatID, Grading_Type, Updated_By));
     }
     catch
     {
         throw;
     }
 }
Example #21
0
 public static DataTable Get_CriteriaList(string SearchText, int CategoryID)
 {
     try
     {
         return(DAL_Crew_Interview.Get_CriteriaList_DL(SearchText, CategoryID));
     }
     catch
     {
         throw;
     }
 }
Example #22
0
 public static void Swap_InterviewQuestion_Sort_Order(int IQID, int RankID, int QID, int UpDown, int UserID)
 {
     try
     {
         DAL_Crew_Interview.Swap_InterviewQuestion_Sort_Order_DL(IQID, RankID, QID, UpDown, UserID);
     }
     catch
     {
         throw;
     }
 }
Example #23
0
        public static int INS_CrewInterviewPlanning(int CrewID, int Rank, string CandidateName, string InterviewPlanDate, int PlannedInterviewerID, string InterviewerPosition, int Created_By)
        {
            try
            {
                DateTime dtInterviewPlanDate = DateTime.Parse(InterviewPlanDate, iFormatProvider);

                return(DAL_Crew_Interview.INS_CrewInterviewPlanning_DL(CrewID, Rank, CandidateName, dtInterviewPlanDate, PlannedInterviewerID, InterviewerPosition, Created_By));
            }
            catch
            {
                throw;
            }
        }
Example #24
0
        public static int UPDATE_CrewInterviewResult(int CrewID, int InterviewID, int InterviewerID, string InterviewDate, int RankID, string InterviewerPosition, string ResultText, string Selected, string OtherText, int Modified_By)
        {
            try
            {
                DateTime dtInterviewDate = DateTime.Parse(InterviewDate, iFormatProvider);
                int      iSelected       = 0;
                if (Selected != "")
                {
                    iSelected = int.Parse(Selected);
                }

                return(DAL_Crew_Interview.UPDATE_CrewInterviewResult_DL(CrewID, InterviewID, InterviewerID, InterviewerPosition, dtInterviewDate, RankID, ResultText, iSelected, OtherText, Modified_By));
            }
            catch
            {
                throw;
            }
        }
Example #25
0
 public int Del_Interview(int InterviewID, int CrewID, int Deleted_By)
 {
     return(DAL_Crew_Interview.Delete_CrewInterview_DL(InterviewID, CrewID, Deleted_By));
 }
Example #26
0
 public static DataTable Get_PlannedInterviewDetails(int UserID, int CrewID)
 {
     return(DAL_Crew_Interview.Get_PlannedInterviewDetails_DL(UserID, CrewID));
 }
Example #27
0
 public static DataSet Get_InterviewQuestionAnswers(int InterviewID, int UserID)
 {
     return(DAL_Crew_Interview.Get_InterviewQuestionAnswers_DL(InterviewID, UserID));
 }
Example #28
0
 public static DataTable Get_InterviewQuestions_UnAssigned(int IQID, int RankID, int CategoryID, string SearchText)
 {
     return(DAL_Crew_Interview.Get_InterviewQuestions_UnAssigned_DL(IQID, RankID, CategoryID, SearchText));
 }
Example #29
0
 public static DataTable Get_InterviewQuestion_Options(int QuestionID)
 {
     return(DAL_Crew_Interview.Get_InterviewQuestion_Options_DL(QuestionID));
 }
Example #30
0
 public static DataTable Get_InterviewQuestions(int IQID, int RankID)
 {
     return(DAL_Crew_Interview.Get_InterviewQuestions_DL(IQID, RankID));
 }