Ejemplo n.º 1
0
        public void RemoveApplicantResume(ApplicantResumePoco[] items)
        {
            var logic = new ApplicantResumeLogic
                            (new EFGenericRepository <ApplicantResumePoco>(false));

            logic.Delete(items);
        }
Ejemplo n.º 2
0
        public void AddApplicantResume(ApplicantResumePoco[] items)
        {
            var logic = new ApplicantResumeLogic
                            (new EFGenericRepository <ApplicantResumePoco>(false));

            logic.Add(items);
        }
Ejemplo n.º 3
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);
        }
Ejemplo n.º 4
0
        public void AddApplicantResume(ApplicantResumePoco[] pocos)
        {
            EFGenericRepository <ApplicantResumePoco> repo = new EFGenericRepository <ApplicantResumePoco>(false);
            ApplicantResumeLogic logic = new ApplicantResumeLogic(repo);

            logic.Add(pocos);
        }
Ejemplo n.º 5
0
        public void RemoveApplicantResume(ApplicantResumePoco[] pocos)
        {
            var repo  = new EFGenericRepository <ApplicantResumePoco>(false);
            var logic = new ApplicantResumeLogic(repo);

            logic.Delete(pocos);
        }
Ejemplo n.º 6
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);
        }
Ejemplo n.º 7
0
        public List <ApplicantResumePoco> GetAllApplicantResume()
        {
            var repo  = new EFGenericRepository <ApplicantResumePoco>(false);
            var logic = new ApplicantResumeLogic(repo);

            return(logic.GetAll());
        }
        public ApplicantResumeController()
        {
            EFGenericRepository <ApplicantResumePoco> repo = new EFGenericRepository <ApplicantResumePoco>();
            ApplicantResumeLogic logic = new ApplicantResumeLogic(repo);

            _logic = logic;
        }
Ejemplo n.º 9
0
        public ApplicantResumePoco GetSingleApplicantResume(string Id)
        {
            EFGenericRepository <ApplicantResumePoco> repo = new EFGenericRepository <ApplicantResumePoco>(false);
            ApplicantResumeLogic logic = new ApplicantResumeLogic(repo);

            return(logic.Get(Guid.Parse(Id)));
        }
        public ApplicantResumeController()

        {
            var repo = new EFGenericRepository <ApplicantResumePoco>(false);

            _logic = new ApplicantResumeLogic(repo);
        }
Ejemplo n.º 11
0
        public ApplicantResumePoco GetSingleApplicantResume(string Id)
        {
            Guid id    = new Guid(Id);
            var  logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            return(logic.Get(id));
        }
Ejemplo n.º 12
0
        public List <ApplicantResumePoco> GetAllApplicantResume()
        {
            List <ApplicantResumePoco> applicantResumePocos = new List <ApplicantResumePoco>();
            var logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            applicantResumePocos = logic.GetAll();
            return(applicantResumePocos);
        }
Ejemplo n.º 13
0
        public ApplicantResumePoco GetSingleApplicantResume(string Id)
        {
            var logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));
            ApplicantResumePoco applicantResumePoco = new ApplicantResumePoco();

            applicantResumePoco = logic.Get(Guid.Parse(Id));
            return(applicantResumePoco);
        }
Ejemplo n.º 14
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));
 }
Ejemplo n.º 15
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);
        }
Ejemplo n.º 16
0
        public ApplicantResumeController()
        {
            var repo = new EntityFrameworkDataAccess.EFGenericRepository <ApplicantResumePoco>();

            _logic = new ApplicantResumeLogic(repo);
        }
Ejemplo n.º 17
0
        public ApplicantResumePoco GetSingleApplicantResume(Guid Id)
        {
            ApplicantResumeLogic logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            return(logic.Get(Id));
        }
Ejemplo n.º 18
0
        public List <ApplicantResumePoco> GetAllApplicantResume()
        {
            var reference = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            return(reference.GetAll());
        }
        public ApplicantResumeService()
        {
            EFGenericRepository <ApplicantResumePoco> Repo = new EFGenericRepository <ApplicantResumePoco>();

            _logic = new ApplicantResumeLogic(Repo);
        }
Ejemplo n.º 20
0
        public ApplicantResumeController()
        {
            var repository = new ApplicantProfileRepository <ApplicantResumePoco>(false);

            logic = new ApplicantResumeLogic(repository);
        }
Ejemplo n.º 21
0
        public void UpdateApplicantResume(ApplicantResumePoco[] items)
        {
            var _logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            _logic.Update(items);
        }
 public ApplicantResumeController()
 {
     _logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));
 }
Ejemplo n.º 23
0
        public void AddApplicantResume(ApplicantResumePoco[] items)
        {
            var reference = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            reference.Add(items);
        }
Ejemplo n.º 24
0
        public void UpdateApplicantResume(ApplicantResumePoco[] pocos)
        {
            ApplicantResumeLogic logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            logic.Update(pocos);
        }
Ejemplo n.º 25
0
        public ApplicantResumePoco GetSingleApplicantResume(string id)
        {
            var logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            return(logic.Get(Guid.Parse(id)));
        }
Ejemplo n.º 26
0
 public ApplicantResumeController(IDataRepository <ApplicantResumePoco> repo)
 {
     _logic = new ApplicantResumeLogic(repo);
 }
 public ApplicantResumeService()
 {
     _logic = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>());
 }
Ejemplo n.º 28
0
        public ApplicantResumePoco GetSingleApplicantResume(string Id)
        {
            var reference = new ApplicantResumeLogic(new EFGenericRepository <ApplicantResumePoco>(false));

            return(reference.Get(Guid.Parse(Id)));
        }