Exemplo n.º 1
0
        public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id)
        {
            ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic
                                                  (new EFGenericRepository <ApplicantWorkHistoryPoco>(false));

            return(logic.Get(Guid.Parse(Id)));
        }
Exemplo n.º 2
0
        public ApplicantWorkHistoryController()
        {
            var repo =
                new EFGenericRepository <ApplicantWorkHistoryPoco>(false);

            _logic = new ApplicantWorkHistoryLogic(repo);
        }
Exemplo n.º 3
0
        public void RemoveApplicantWorkHistory(ApplicantWorkHistoryPoco[] items)
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> applicantworkhistoryrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic _applicantworkhistorylogic = new ApplicantWorkHistoryLogic(applicantworkhistoryrepo);

            _applicantworkhistorylogic.Delete(items);
        }
Exemplo n.º 4
0
        public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] item)
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> applicantworkhistoryrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic _applicantworkhistorylogic = new ApplicantWorkHistoryLogic(applicantworkhistoryrepo);

            _applicantworkhistorylogic.Add(item);
        }
Exemplo n.º 5
0
        public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory()
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> applicantworkhistoryrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic _applicantworkhistorylogic = new ApplicantWorkHistoryLogic(applicantworkhistoryrepo);

            return(_applicantworkhistorylogic.GetAll());
        }
Exemplo n.º 6
0
        public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string id)
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> applicantworkhistoryrepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic _applicantworkhistorylogic = new ApplicantWorkHistoryLogic(applicantworkhistoryrepo);

            return(_applicantworkhistorylogic.Get(Guid.Parse(id)));
        }
Exemplo n.º 7
0
        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);
        }
Exemplo n.º 8
0
        public void UpdateApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos)
        {
            var repo  = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            var logic = new ApplicantWorkHistoryLogic(repo);

            logic.Update(pocos);
        }
Exemplo n.º 9
0
        public void RemoveApplicantWorkHistory(ApplicantWorkHistoryPoco[] items)
        {
            var logic = new ApplicantWorkHistoryLogic
                            (new EFGenericRepository <ApplicantWorkHistoryPoco>(false));

            logic.Delete(items);
        }
Exemplo n.º 10
0
        public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id)
        {
            Guid id    = new Guid(Id);
            var  logic = new ApplicantWorkHistoryLogic(new EFGenericRepository <ApplicantWorkHistoryPoco>(false));

            return(logic.Get(id));
        }
Exemplo n.º 11
0
        public void UpdateApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos)
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>();
            ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo);

            logic.Update(pocos);
        }
Exemplo n.º 12
0
        public List <ApplicantWorkHistoryPoco> GetAllAppliccantWorkHistory()
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>();
            ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo);

            return(logic.GetAll());
        }
Exemplo n.º 13
0
        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);
        }
Exemplo n.º 14
0
        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;
        }
Exemplo n.º 16
0
        public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory()
        {
            var logic = new ApplicantWorkHistoryLogic
                            (new EFGenericRepository <ApplicantWorkHistoryPoco>(false));

            return(logic.GetAll());
        }
Exemplo n.º 17
0
        public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(String id)
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo);

            return(logic.Get(Guid.Parse(id)));
        }
Exemplo n.º 18
0
        public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id)
        {
            ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo);

            return(log.Get(Guid.Parse(Id)));
        }
Exemplo n.º 19
0
        public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos)
        {
            ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo);

            log.Add(pocos);
        }
Exemplo n.º 20
0
        public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] items)
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> ApplicantWorkHistoryRepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            var Logic = new ApplicantWorkHistoryLogic(ApplicantWorkHistoryRepo);

            Logic.Add(items);
        }
Exemplo n.º 21
0
        public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory()
        {
            ApplicantProfileRepository <ApplicantWorkHistoryPoco> repo = new ApplicantProfileRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic log = new ApplicantWorkHistoryLogic(repo);

            return(log.GetAll());
        }
Exemplo n.º 22
0
        public ApplicantWorkHistoryPoco GetSingleApplicantWorkHistory(string Id)
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> ApplicantWorkHistoryRepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            var Logic = new ApplicantWorkHistoryLogic(ApplicantWorkHistoryRepo);

            return(Logic.Get(Guid.Parse(Id)));
        }
Exemplo n.º 23
0
        public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory()
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> ApplicantWorkHistoryRepo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            var Logic = new ApplicantWorkHistoryLogic(ApplicantWorkHistoryRepo);

            return(Logic.GetAll());
        }
Exemplo n.º 24
0
        public void AddApplicantWorkHistory(ApplicantWorkHistoryPoco[] pocos)
        {
            EFGenericRepository <ApplicantWorkHistoryPoco> repo = new EFGenericRepository <ApplicantWorkHistoryPoco>(false);
            ApplicantWorkHistoryLogic logic = new ApplicantWorkHistoryLogic(repo);

            logic.Add(pocos);
        }
Exemplo n.º 25
0
        public void UpdateApplicantWorkHistory(ApplicantWorkHistoryPoco[] items)
        {
            var logic = new ApplicantWorkHistoryLogic
                            (new EFGenericRepository <ApplicantWorkHistoryPoco>());

            logic.Update(items);
        }
Exemplo n.º 26
0
        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);
        }
Exemplo n.º 27
0
        public List <ApplicantWorkHistoryPoco> GetAllApplicantWorkHistory()
        {
            List <ApplicantWorkHistoryPoco> applicantWorkHistoryPoco = new List <ApplicantWorkHistoryPoco>();
            var logic = new ApplicantWorkHistoryLogic(new EFGenericRepository <ApplicantWorkHistoryPoco>(false));

            applicantWorkHistoryPoco = logic.GetAll();
            return(applicantWorkHistoryPoco);
        }
Exemplo n.º 28
0
 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));
 }
Exemplo n.º 29
0
        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));
 }