Beispiel #1
0
 public List <T> ListNoticeCandidates(ParametersForCandidate parameter)
 {
     try
     {
         var    objName = (typeof(T)).Name;
         string sp      = GetSP(objName); // string sp = SPNameAndParameters.GetList<T>();
         var    list    = GeneralDataAccess.ListofT <T>(sp, parameter);
         return(list);
     }
     catch (Exception ex)
     {
         var exm = ex.Message;
         return(null);
     }
 }
Beispiel #2
0
 public static List <ApplicantNoticeList> ApplicantsNoticeList(ParametersForCandidate parameter)
 {
     return(AllPositionList <ApplicantNoticeList>(parameter));
 }
Beispiel #3
0
 public static List <CandidateListNotice> NoticeInterviewCandidate(ParametersForCandidate parameter)
 {
     return(AllPositionList <CandidateListNotice>(parameter));
 }