public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id) { ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic (new EFGenericRepository <ApplicantWorkHistoryPoco>(false)); return(logic.Get(Guid.Parse(Id))); }
public ApplicantWorkHistoryController() { var repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); _logic = new ApplicantWorkHistoryLogic(repo); }
public void RemoveApplicantWorkHistory(ApplicantWorkHistoryPoco[] items) { EFGenericRepository <ApplicantWorkHistoryPoco> applicantworkhistoryrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic _applicantworkhistorylogic = new ApplicantWorkHistoryLogic(applicantworkhistoryrepo); _applicantworkhistorylogic.Delete(items); }
public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] item) { EFGenericRepository <ApplicantWorkHistoryPoco> applicantworkhistoryrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic _applicantworkhistorylogic = new ApplicantWorkHistoryLogic(applicantworkhistoryrepo); _applicantworkhistorylogic.Add(item); }
public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory() { EFGenericRepository <ApplicantWorkHistoryPoco> applicantworkhistoryrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic _applicantworkhistorylogic = new ApplicantWorkHistoryLogic(applicantworkhistoryrepo); return(_applicantworkhistorylogic.GetAll()); }
public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string id) { EFGenericRepository <ApplicantWorkHistoryPoco> applicantworkhistoryrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic _applicantworkhistorylogic = new ApplicantWorkHistoryLogic(applicantworkhistoryrepo); return(_applicantworkhistorylogic.Get(Guid.Parse(id))); }
public Applicant() { EFGenericRepository <ApplicantEducationPoco> repo = new EFGenericRepository <ApplicantEducationPoco>(false); _logic = new ApplicantEducationLogic(repo); EFGenericRepository <ApplicantJobApplicationPoco> repo1 = new EFGenericRepository <ApplicantJobApplicationPoco>(false); _logicAJL = new ApplicantJobApplicationLogic(repo1); EFGenericRepository <ApplicantProfilePoco> repo2 = new EFGenericRepository <ApplicantProfilePoco>(false); _logicProfile = new ApplicantProfileLogic(repo2); EFGenericRepository <ApplicantResumePoco> repo3 = new EFGenericRepository <ApplicantResumePoco>(false); _logicApplicantResume = new ApplicantResumeLogic(repo3); EFGenericRepository <ApplicantSkillPoco> repo4 = new EFGenericRepository <ApplicantSkillPoco>(false); _logicApplicantSkillLogic = new ApplicantSkillLogic(repo4); EFGenericRepository <ApplicantWorkHistoryPoco> repo5 = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); _logicApplicantWorkHistoryLogic = new ApplicantWorkHistoryLogic(repo5); }
public void UpdateApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos) { var repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); var logic = new ApplicantWorkHistoryLogic(repo); logic.Update(pocos); }
public void RemoveApplicantWorkHistory(ApplicantWorkHistoryPoco[] items) { var logic = new ApplicantWorkHistoryLogic (new EFGenericRepository <ApplicantWorkHistoryPoco>(false)); logic.Delete(items); }
public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id) { Guid id = new Guid(Id); var logic = new ApplicantWorkHistoryLogic(new EFGenericRepository <ApplicantWorkHistoryPoco>(false)); return(logic.Get(id)); }
public void UpdateApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos) { EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(); ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo); logic.Update(pocos); }
public List <ApplicantWorkHistoryPoco> GetAllAppliccantWorkHistory() { EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(); ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo); return(logic.GetAll()); }
public Applicant() { // ApplicantEducationRepository repo = new ApplicantEducationRepository(); EFGenericRepository <ApplicantEducationPoco> repo = new EFGenericRepository <ApplicantEducationPoco>(false); _logic = new ApplicantEducationLogic(repo); //ApplicantJobApplicationRepository Apprepo = new ApplicantJobApplicationRepository(); EFGenericRepository <ApplicantJobApplicationPoco> Apprepo = new EFGenericRepository <ApplicantJobApplicationPoco>(false); _applicantJobApplicationLogic = new ApplicantJobApplicationLogic(Apprepo); //ApplicantProfileRepository Profilerepo = new ApplicantProfileRepository(); EFGenericRepository <ApplicantProfilePoco> Profilerepo = new EFGenericRepository <ApplicantProfilePoco>(false); _applicantProfileLogic = new ApplicantProfileLogic(Profilerepo); //ApplicantResumeRepository Resumerepo = new ApplicantResumeRepository(); EFGenericRepository <ApplicantResumePoco> Resumerepo = new EFGenericRepository <ApplicantResumePoco>(false); _applicantResumeLogic = new ApplicantResumeLogic(Resumerepo); //ApplicantSkillRepository Skillrepo = new ApplicantSkillRepository(); EFGenericRepository <ApplicantSkillPoco> Skillrepo = new EFGenericRepository <ApplicantSkillPoco>(false); _applicantSkillLogic = new ApplicantSkillLogic(Skillrepo); //ApplicantWorkHistoryRepository Workrepo = new ApplicantWorkHistoryRepository(); EFGenericRepository <ApplicantWorkHistoryPoco> Workrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); _applicantWorkHistoryLogic = new ApplicantWorkHistoryLogic(Workrepo); }
public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] items) { var logic = new ApplicantWorkHistoryLogic(new EFGenericRepository <ApplicantWorkHistoryPoco >(false)); logic.Add(items); }
public ApplicantWorkHistoryController() { EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(); ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo); _logic = logic; }
public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory() { var logic = new ApplicantWorkHistoryLogic (new EFGenericRepository <ApplicantWorkHistoryPoco>(false)); return(logic.GetAll()); }
public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(String id) { EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo); return(logic.Get(Guid.Parse(id))); }
public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id) { ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo); return(log.Get(Guid.Parse(Id))); }
public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos) { ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo); log.Add(pocos); }
public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] items) { EFGenericRepository <ApplicantWorkHistoryPoco> ApplicantWorkHistoryRepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); var Logic = new ApplicantWorkHistoryLogic(ApplicantWorkHistoryRepo); Logic.Add(items); }
public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory() { ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo); return(log.GetAll()); }
public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id) { EFGenericRepository <ApplicantWorkHistoryPoco> ApplicantWorkHistoryRepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); var Logic = new ApplicantWorkHistoryLogic(ApplicantWorkHistoryRepo); return(Logic.Get(Guid.Parse(Id))); }
public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory() { EFGenericRepository <ApplicantWorkHistoryPoco> ApplicantWorkHistoryRepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); var Logic = new ApplicantWorkHistoryLogic(ApplicantWorkHistoryRepo); return(Logic.GetAll()); }
public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos) { EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo); logic.Add(pocos); }
public void UpdateApplicantWorkHistory(ApplicantWorkHistoryPoco[] items) { var logic = new ApplicantWorkHistoryLogic (new EFGenericRepository <ApplicantWorkHistoryPoco>()); logic.Update(items); }
public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id) { var logic = new ApplicantWorkHistoryLogic(new EFGenericRepository <ApplicantWorkHistoryPoco>(false)); ApplicantWorkHistoryPoco applicantWorkHistoryPoco = new ApplicantWorkHistoryPoco(); applicantWorkHistoryPoco = logic.Get(Guid.Parse(Id)); return(applicantWorkHistoryPoco); }
public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory() { List <ApplicantWorkHistoryPoco> applicantWorkHistoryPoco = new List <ApplicantWorkHistoryPoco>(); var logic = new ApplicantWorkHistoryLogic(new EFGenericRepository <ApplicantWorkHistoryPoco>(false)); applicantWorkHistoryPoco = logic.GetAll(); return(applicantWorkHistoryPoco); }
public Applicant() { _applicantEducationLogic = new ApplicantEducationLogic(new EFGenericRepository <ApplicantEducationPoco>(false)); _ApplicantJobApplicationLogic = new ApplicantJobApplicationLogic(new EFGenericRepository <ApplicantJobApplicationPoco>(false)); _ApplicantProfileLogic = new ApplicantProfileLogic(new EFGenericRepository <ApplicantProfilePoco>(false)); _ApplicantResumeLogic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false)); _ApplicantSkillLogic = new ApplicantSkillLogic(new EFGenericRepository <ApplicantSkillPoco>(false)); _ApplicantWorkHistoryLogic = new ApplicantWorkHistoryLogic(new EFGenericRepository <ApplicantWorkHistoryPoco>(false)); }
public Applicant() { EFGenericRepository <ApplicantEducationPoco> repo = new EFGenericRepository <ApplicantEducationPoco>(false); _logic = new ApplicantEducationLogic(repo); EFGenericRepository <ApplicantJobApplicationPoco> jRepo = new EFGenericRepository <ApplicantJobApplicationPoco>(false); _jLogic = new ApplicantJobApplicationLogic(jRepo); EFGenericRepository <ApplicantProfilePoco> pRepo = new EFGenericRepository <ApplicantProfilePoco>(false); _pLogic = new ApplicantProfileLogic(pRepo); EFGenericRepository <ApplicantResumePoco> rRepo = new EFGenericRepository <ApplicantResumePoco>(false); _rLogic = new ApplicantResumeLogic(rRepo); EFGenericRepository <ApplicantSkillPoco> sRepo = new EFGenericRepository <ApplicantSkillPoco>(false); _sLogic = new ApplicantSkillLogic(sRepo); EFGenericRepository <ApplicantWorkHistoryPoco> wRepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false); _wLogic = new ApplicantWorkHistoryLogic(wRepo); }
public ApplicantWorkHistoryController() { _logic = new ApplicantWorkHistoryLogic(new EFGenericRepository <ApplicantWorkHistoryPoco>(false)); }