public List <SecurityRolePoco> GetAllSecurityRole() { ApplicantProfileRepository <SecurityRolePoco> repo = new ApplicantProfileRepository <SecurityRolePoco>(false); SecurityRoleLogic log = new SecurityRoleLogic(repo); return(log.GetAll()); }
public SecurityLoginsRolePoco GetSingleSecurityLoginsRole(string Id) { ApplicantProfileRepository <SecurityLoginsRolePoco> repo = new ApplicantProfileRepository <SecurityLoginsRolePoco>(false); SecurityLoginsRoleLogic log = new SecurityLoginsRoleLogic(repo); return(log.Get(Guid.Parse(Id))); }
public void AddSecurityRole(SecurityRolePoco[] pocos) { ApplicantProfileRepository <SecurityRolePoco> repo = new ApplicantProfileRepository <SecurityRolePoco>(false); SecurityRoleLogic log = new SecurityRoleLogic(repo); log.Add(pocos); }
public void RemoveApplicantSkill(ApplicantSkillPoco[] pocos) { ApplicantProfileRepository <ApplicantSkillPoco> repo = new ApplicantProfileRepository <ApplicantSkillPoco>(false); ApplicantSkillLogic log = new ApplicantSkillLogic(repo); log.Delete(pocos); }
public void RemoveSecurityLoginsLog(SecurityLoginsLogPoco[] pocos) { ApplicantProfileRepository <SecurityLoginsLogPoco> repo = new ApplicantProfileRepository <SecurityLoginsLogPoco>(false); SecurityLoginsLogLogic log = new SecurityLoginsLogLogic(repo); log.Delete(pocos); }
public List <ApplicantSkillPoco> GetAllApplicantSkill() { ApplicantProfileRepository <ApplicantSkillPoco> repo = new ApplicantProfileRepository <ApplicantSkillPoco>(false); ApplicantSkillLogic log = new ApplicantSkillLogic(repo); return(log.GetAll()); }
public void AddApplicantSkill(ApplicantSkillPoco[] pocos) { ApplicantProfileRepository <ApplicantSkillPoco> repo = new ApplicantProfileRepository <ApplicantSkillPoco>(false); ApplicantSkillLogic log = new ApplicantSkillLogic(repo); log.Add(pocos); }
public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos) { ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false); ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo); log.Add(pocos); }
public void UpdateApplicantJobApplication(ApplicantJobApplicationPoco[] pocos) { ApplicantProfileRepository <ApplicantJobApplicationPoco> repo = new ApplicantProfileRepository <ApplicantJobApplicationPoco>(false); ApplicantJobApplicationLogic log = new ApplicantJobApplicationLogic(repo); log.Update(pocos); }
public List <SystemLanguageCodePoco> GetAllSystemLanguageCode() { ApplicantProfileRepository <SystemLanguageCodePoco> repo = new ApplicantProfileRepository <SystemLanguageCodePoco>(false); SystemLanguageCodeLogic log = new SystemLanguageCodeLogic(repo); return(log.GetAll()); }
public void UpdateCompanyJobSkill(CompanyJobSkillPoco[] pocos) { ApplicantProfileRepository <CompanyJobSkillPoco> repo = new ApplicantProfileRepository <CompanyJobSkillPoco>(false); CompanyJobSkillLogic log = new CompanyJobSkillLogic(repo); log.Update(pocos); }
public void AddCompanyJobEducation(CompanyJobEducationPoco[] pocos) { ApplicantProfileRepository <CompanyJobEducationPoco> repo = new ApplicantProfileRepository <CompanyJobEducationPoco>(false); CompanyJobEducationLogic log = new CompanyJobEducationLogic(repo); log.Add(pocos); }
public ApplicantJobApplicationPoco GetSingleApplicantJobApplication(string Id) { ApplicantProfileRepository <ApplicantJobApplicationPoco> repo = new ApplicantProfileRepository <ApplicantJobApplicationPoco>(false); ApplicantJobApplicationLogic log = new ApplicantJobApplicationLogic(repo); return(log.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 List <CompanyJobEducationPoco> GetAllCompanyJobEducation() { ApplicantProfileRepository <CompanyJobEducationPoco> repo = new ApplicantProfileRepository <CompanyJobEducationPoco>(false); CompanyJobEducationLogic log = new CompanyJobEducationLogic(repo); return(log.GetAll()); }
public void AddCompanyProfile(CompanyProfilePoco[] pocos) { ApplicantProfileRepository <CompanyProfilePoco> repo = new ApplicantProfileRepository <CompanyProfilePoco>(false); CompanyProfileLogic log = new CompanyProfileLogic(repo); log.Add(pocos); }
public void UpdateSystemLanguageCode(SystemLanguageCodePoco[] pocos) { ApplicantProfileRepository <SystemLanguageCodePoco> repo = new ApplicantProfileRepository <SystemLanguageCodePoco>(false); SystemLanguageCodeLogic log = new SystemLanguageCodeLogic(repo); log.Update(pocos); }
public void RemoveSystemCountryCode(SystemCountryCodePoco[] pocos) { ApplicantProfileRepository <SystemCountryCodePoco> repo = new ApplicantProfileRepository <SystemCountryCodePoco>(false); SystemCountryCodeLogic log = new SystemCountryCodeLogic(repo); log.Delete(pocos); }
public SystemLanguageCodePoco GetSingleSystemLanguageCode(string Id) { ApplicantProfileRepository <SystemLanguageCodePoco> repo = new ApplicantProfileRepository <SystemLanguageCodePoco>(false); SystemLanguageCodeLogic log = new SystemLanguageCodeLogic(repo); return(log.Get(Id)); }
public CompanyProfilePoco GetSingleCompanyProfile(string Id) { ApplicantProfileRepository <CompanyProfilePoco> repo = new ApplicantProfileRepository <CompanyProfilePoco>(false); CompanyProfileLogic log = new CompanyProfileLogic(repo); return(log.Get(Guid.Parse(Id))); }
public void RemoveApplicantEducation(ApplicantEducationPoco[] pocos) { ApplicantProfileRepository <ApplicantEducationPoco> repo = new ApplicantProfileRepository <ApplicantEducationPoco>(false); ApplicantEducationLogic log = new ApplicantEducationLogic(repo); log.Delete(pocos); }
public void RemoveCompanyJobDescription(CompanyJobDescriptionPoco[] pocos) { ApplicantProfileRepository <CompanyJobDescriptionPoco> repo = new ApplicantProfileRepository <CompanyJobDescriptionPoco>(false); CompanyJobDescriptionLogic log = new CompanyJobDescriptionLogic(repo); log.Delete(pocos); }
public void UpdateSecurityLoginsRole(SecurityLoginsRolePoco[] pocos) { ApplicantProfileRepository <SecurityLoginsRolePoco> repo = new ApplicantProfileRepository <SecurityLoginsRolePoco>(false); SecurityLoginsRoleLogic log = new SecurityLoginsRoleLogic(repo); log.Update(pocos); }
public void UpdateCompanyLocation(CompanyLocationPoco[] pocos) { ApplicantProfileRepository <CompanyLocationPoco> repo = new ApplicantProfileRepository <CompanyLocationPoco>(false); CompanyLocationLogic log = new CompanyLocationLogic(repo); log.Update(pocos); }
public void UpdateApplicantResume(ApplicantResumePoco[] pocos) { ApplicantProfileRepository <ApplicantResumePoco> repo = new ApplicantProfileRepository <ApplicantResumePoco>(false); ApplicantResumeLogic log = new ApplicantResumeLogic(repo); log.Update(pocos); }
public List <SystemCountryCodePoco> GetAllSystemCountryCode() { ApplicantProfileRepository <SystemCountryCodePoco> repo = new ApplicantProfileRepository <SystemCountryCodePoco>(false); SystemCountryCodeRepository l = new SystemCountryCodeRepository(); SystemCountryCodeLogic log = new SystemCountryCodeLogic(l); return(log.GetAll()); }
public ApplicantProfileController() { var repository = new ApplicantProfileRepository(); logic = new ApplicantProfileLogic(repository); }
public SecurityLoginsLogController() { var repository = new ApplicantProfileRepository <SecurityLoginsLogPoco>(false); logic = new SecurityLoginsLogLogic(repository); }
public ApplicantSkillController() { var repository = new ApplicantProfileRepository <ApplicantSkillPoco>(false); logic = new ApplicantSkillLogic(repository); }
public CompanyJobEducationController() { var repository = new ApplicantProfileRepository <CompanyJobEducationPoco>(false); logic = new CompanyJobEducationLogic(repository); }