コード例 #1
0
ファイル: Security.cs プロジェクト: SamuelOyanna/CareerCloud
        public List <SecurityRolePoco> GetAllSecurityRole()
        {
            ApplicantProfileRepository <SecurityRolePoco> repo = new ApplicantProfileRepository <SecurityRolePoco>(false);
            SecurityRoleLogic log = new SecurityRoleLogic(repo);

            return(log.GetAll());
        }
コード例 #2
0
ファイル: Security.cs プロジェクト: SamuelOyanna/CareerCloud
        public SecurityLoginsRolePoco GetSingleSecurityLoginsRole(string Id)
        {
            ApplicantProfileRepository <SecurityLoginsRolePoco> repo = new ApplicantProfileRepository <SecurityLoginsRolePoco>(false);
            SecurityLoginsRoleLogic log = new SecurityLoginsRoleLogic(repo);

            return(log.Get(Guid.Parse(Id)));
        }
コード例 #3
0
ファイル: Security.cs プロジェクト: SamuelOyanna/CareerCloud
        public void AddSecurityRole(SecurityRolePoco[] pocos)
        {
            ApplicantProfileRepository <SecurityRolePoco> repo = new ApplicantProfileRepository <SecurityRolePoco>(false);
            SecurityRoleLogic log = new SecurityRoleLogic(repo);

            log.Add(pocos);
        }
コード例 #4
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public void RemoveApplicantSkill(ApplicantSkillPoco[] pocos)
        {
            ApplicantProfileRepository <ApplicantSkillPoco> repo = new ApplicantProfileRepository <ApplicantSkillPoco>(false);
            ApplicantSkillLogic log = new ApplicantSkillLogic(repo);

            log.Delete(pocos);
        }
コード例 #5
0
ファイル: Security.cs プロジェクト: SamuelOyanna/CareerCloud
        public void RemoveSecurityLoginsLog(SecurityLoginsLogPoco[] pocos)
        {
            ApplicantProfileRepository <SecurityLoginsLogPoco> repo = new ApplicantProfileRepository <SecurityLoginsLogPoco>(false);
            SecurityLoginsLogLogic log = new SecurityLoginsLogLogic(repo);

            log.Delete(pocos);
        }
コード例 #6
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public List <ApplicantSkillPoco> GetAllApplicantSkill()
        {
            ApplicantProfileRepository <ApplicantSkillPoco> repo = new ApplicantProfileRepository <ApplicantSkillPoco>(false);
            ApplicantSkillLogic log = new ApplicantSkillLogic(repo);

            return(log.GetAll());
        }
コード例 #7
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public void AddApplicantSkill(ApplicantSkillPoco[] pocos)
        {
            ApplicantProfileRepository <ApplicantSkillPoco> repo = new ApplicantProfileRepository <ApplicantSkillPoco>(false);
            ApplicantSkillLogic log = new ApplicantSkillLogic(repo);

            log.Add(pocos);
        }
コード例 #8
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos)
        {
            ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo);

            log.Add(pocos);
        }
コード例 #9
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public void UpdateApplicantJobApplication(ApplicantJobApplicationPoco[] pocos)
        {
            ApplicantProfileRepository <ApplicantJobApplicationPoco> repo = new ApplicantProfileRepository <ApplicantJobApplicationPoco>(false);
            ApplicantJobApplicationLogic log = new ApplicantJobApplicationLogic(repo);

            log.Update(pocos);
        }
コード例 #10
0
ファイル: System.cs プロジェクト: SamuelOyanna/CareerCloud
        public List <SystemLanguageCodePoco> GetAllSystemLanguageCode()
        {
            ApplicantProfileRepository <SystemLanguageCodePoco> repo = new ApplicantProfileRepository <SystemLanguageCodePoco>(false);
            SystemLanguageCodeLogic log = new SystemLanguageCodeLogic(repo);

            return(log.GetAll());
        }
コード例 #11
0
        public void UpdateCompanyJobSkill(CompanyJobSkillPoco[] pocos)
        {
            ApplicantProfileRepository <CompanyJobSkillPoco> repo = new ApplicantProfileRepository <CompanyJobSkillPoco>(false);
            CompanyJobSkillLogic log = new CompanyJobSkillLogic(repo);

            log.Update(pocos);
        }
コード例 #12
0
        public void AddCompanyJobEducation(CompanyJobEducationPoco[] pocos)
        {
            ApplicantProfileRepository <CompanyJobEducationPoco> repo = new ApplicantProfileRepository <CompanyJobEducationPoco>(false);
            CompanyJobEducationLogic log = new CompanyJobEducationLogic(repo);

            log.Add(pocos);
        }
コード例 #13
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public ApplicantJobApplicationPoco GetSingleApplicantJobApplication(string Id)
        {
            ApplicantProfileRepository <ApplicantJobApplicationPoco> repo = new ApplicantProfileRepository <ApplicantJobApplicationPoco>(false);
            ApplicantJobApplicationLogic log = new ApplicantJobApplicationLogic(repo);

            return(log.Get(Guid.Parse(Id)));
        }
コード例 #14
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id)
        {
            ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo);

            return(log.Get(Guid.Parse(Id)));
        }
コード例 #15
0
        public List <CompanyJobEducationPoco> GetAllCompanyJobEducation()
        {
            ApplicantProfileRepository <CompanyJobEducationPoco> repo = new ApplicantProfileRepository <CompanyJobEducationPoco>(false);
            CompanyJobEducationLogic log = new CompanyJobEducationLogic(repo);

            return(log.GetAll());
        }
コード例 #16
0
        public void AddCompanyProfile(CompanyProfilePoco[] pocos)
        {
            ApplicantProfileRepository <CompanyProfilePoco> repo = new ApplicantProfileRepository <CompanyProfilePoco>(false);
            CompanyProfileLogic log = new CompanyProfileLogic(repo);

            log.Add(pocos);
        }
コード例 #17
0
ファイル: System.cs プロジェクト: SamuelOyanna/CareerCloud
        public void UpdateSystemLanguageCode(SystemLanguageCodePoco[] pocos)
        {
            ApplicantProfileRepository <SystemLanguageCodePoco> repo = new ApplicantProfileRepository <SystemLanguageCodePoco>(false);
            SystemLanguageCodeLogic log = new SystemLanguageCodeLogic(repo);

            log.Update(pocos);
        }
コード例 #18
0
ファイル: System.cs プロジェクト: SamuelOyanna/CareerCloud
        public void RemoveSystemCountryCode(SystemCountryCodePoco[] pocos)
        {
            ApplicantProfileRepository <SystemCountryCodePoco> repo = new ApplicantProfileRepository <SystemCountryCodePoco>(false);
            SystemCountryCodeLogic log = new SystemCountryCodeLogic(repo);

            log.Delete(pocos);
        }
コード例 #19
0
ファイル: System.cs プロジェクト: SamuelOyanna/CareerCloud
        public SystemLanguageCodePoco GetSingleSystemLanguageCode(string Id)
        {
            ApplicantProfileRepository <SystemLanguageCodePoco> repo = new ApplicantProfileRepository <SystemLanguageCodePoco>(false);
            SystemLanguageCodeLogic log = new SystemLanguageCodeLogic(repo);

            return(log.Get(Id));
        }
コード例 #20
0
        public CompanyProfilePoco GetSingleCompanyProfile(string Id)
        {
            ApplicantProfileRepository <CompanyProfilePoco> repo = new ApplicantProfileRepository <CompanyProfilePoco>(false);
            CompanyProfileLogic log = new CompanyProfileLogic(repo);

            return(log.Get(Guid.Parse(Id)));
        }
コード例 #21
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public void RemoveApplicantEducation(ApplicantEducationPoco[] pocos)
        {
            ApplicantProfileRepository <ApplicantEducationPoco> repo = new ApplicantProfileRepository <ApplicantEducationPoco>(false);
            ApplicantEducationLogic log = new ApplicantEducationLogic(repo);

            log.Delete(pocos);
        }
コード例 #22
0
        public void RemoveCompanyJobDescription(CompanyJobDescriptionPoco[] pocos)
        {
            ApplicantProfileRepository <CompanyJobDescriptionPoco> repo = new ApplicantProfileRepository <CompanyJobDescriptionPoco>(false);
            CompanyJobDescriptionLogic log = new CompanyJobDescriptionLogic(repo);

            log.Delete(pocos);
        }
コード例 #23
0
ファイル: Security.cs プロジェクト: SamuelOyanna/CareerCloud
        public void UpdateSecurityLoginsRole(SecurityLoginsRolePoco[] pocos)
        {
            ApplicantProfileRepository <SecurityLoginsRolePoco> repo = new ApplicantProfileRepository <SecurityLoginsRolePoco>(false);
            SecurityLoginsRoleLogic log = new SecurityLoginsRoleLogic(repo);

            log.Update(pocos);
        }
コード例 #24
0
        public void UpdateCompanyLocation(CompanyLocationPoco[] pocos)
        {
            ApplicantProfileRepository <CompanyLocationPoco> repo = new ApplicantProfileRepository <CompanyLocationPoco>(false);
            CompanyLocationLogic log = new CompanyLocationLogic(repo);

            log.Update(pocos);
        }
コード例 #25
0
ファイル: Applicant.cs プロジェクト: SamuelOyanna/CareerCloud
        public void UpdateApplicantResume(ApplicantResumePoco[] pocos)
        {
            ApplicantProfileRepository <ApplicantResumePoco> repo = new ApplicantProfileRepository <ApplicantResumePoco>(false);
            ApplicantResumeLogic log = new ApplicantResumeLogic(repo);

            log.Update(pocos);
        }
コード例 #26
0
ファイル: System.cs プロジェクト: SamuelOyanna/CareerCloud
        public List <SystemCountryCodePoco> GetAllSystemCountryCode()
        {
            ApplicantProfileRepository <SystemCountryCodePoco> repo = new ApplicantProfileRepository <SystemCountryCodePoco>(false);
            SystemCountryCodeRepository l   = new SystemCountryCodeRepository();
            SystemCountryCodeLogic      log = new SystemCountryCodeLogic(l);

            return(log.GetAll());
        }
コード例 #27
0
        public ApplicantProfileController()
        {
            var repository = new ApplicantProfileRepository();

            logic = new ApplicantProfileLogic(repository);
        }
コード例 #28
0
        public SecurityLoginsLogController()
        {
            var repository = new ApplicantProfileRepository <SecurityLoginsLogPoco>(false);

            logic = new SecurityLoginsLogLogic(repository);
        }
コード例 #29
0
        public ApplicantSkillController()
        {
            var repository = new ApplicantProfileRepository <ApplicantSkillPoco>(false);

            logic = new ApplicantSkillLogic(repository);
        }
コード例 #30
0
        public CompanyJobEducationController()
        {
            var repository = new ApplicantProfileRepository <CompanyJobEducationPoco>(false);

            logic = new CompanyJobEducationLogic(repository);
        }