Example #1
0
        public int RejectOfferCanBAL(string username)
        {
            EmployeeDetailsDAL dal = new EmployeeDetailsDAL();
            int check = dal.RejectOfferCanDAL(username);

            return(check);
        }
Example #2
0
        public string respondOfferBAL(string username, string password)
        {
            EmployeeDetailsDAL dl     = new EmployeeDetailsDAL();
            string             status = dl.respondOfferDAL(username, password);

            return(status);
        }
Example #3
0
        public List <SetJobStatus> CheckCanOfferBAL()
        {
            EmployeeDetailsDAL  dal = new EmployeeDetailsDAL();
            List <SetJobStatus> li  = dal.CheckCanOfferDAL();

            return(li);
        }
Example #4
0
        public bool checkOfferBAL(string chkCandidateStatus)
        {
            EmployeeDetailsDAL dl = new EmployeeDetailsDAL();
            bool check            = dl.checkOfferDAL(chkCandidateStatus);

            return(check);
        }
Example #5
0
        public List <BOCandidateOfferStatus> waitingApprovalCandidate()
        {
            EmployeeDetailsDAL            dal = new EmployeeDetailsDAL();
            List <BOCandidateOfferStatus> li  = dal.waitingApprovalCandidate();

            return(li);
        }
Example #6
0
        //public BOList getBAL()
        //{

        //    EmployeeDetailsDAL dal = new EmployeeDetailsDAL();
        //   BOList bo = dal.getDAL();
        //   return bo;

        //}
        public List <BOCandidateOfferStatus> getCandidateOfferStatusBAL()
        {
            EmployeeDetailsDAL            dal = new EmployeeDetailsDAL();
            List <BOCandidateOfferStatus> li  = dal.getBOCandidateOfferStatusDAL();

            return(li);
        }
Example #7
0
        public int ChangePassBAL(string pass, string username)
        {
            EmployeeDetailsDAL dal = new EmployeeDetailsDAL();
            int i = dal.changePassDAL(pass, username);

            return(i);
        }
Example #8
0
        public List <EmployeeProfile> getProfileBAL(string username)
        {
            EmployeeDetailsDAL     dal = new EmployeeDetailsDAL();
            List <EmployeeProfile> li  = dal.getProfileDAl(username);

            return(li);
        }
Example #9
0
        public string getUsernameBAL(string username, string designation)
        {
            EmployeeDetailsDAL bal  = new EmployeeDetailsDAL();
            string             name = bal.getUsername(username, designation);

            return(name);
        }
Example #10
0
        public bool editCandidateStatusBAL(string int_status, string bgc_status, int can_id)
        {
            EmployeeDetailsDAL dal = new EmployeeDetailsDAL();
            bool check             = dal.editCandidateStatusDAL(int_status, bgc_status, can_id);

            return(check);
        }
Example #11
0
        public List <GenerateCandidateID> generateCandidateIdBAL(string username)
        {
            EmployeeDetailsDAL         dl = new EmployeeDetailsDAL();
            List <GenerateCandidateID> li = dl.generateCandidateIdDAL(username);

            return(li);
        }
Example #12
0
        public List <DisplayEmployee> displayEmplistBal()
        {
            EmployeeDetailsDAL     dl = new EmployeeDetailsDAL();
            List <DisplayEmployee> li = dl.displayEmployeeList();

            return(li);
        }
Example #13
0
        public CheckLogin LoginBAL(string username, string password)
        {
            string             designation;
            EmployeeDetailsDAL dal = new EmployeeDetailsDAL();
            CheckLogin         ck  = dal.LoginDAL(username, password);

            return(ck);
        }
Example #14
0
        public List <int> displayProjectBAL()
        {
            EmployeeDetailsDAL dl = new EmployeeDetailsDAL();

            List <int> bolist = new List <int>();

            bolist = dl.displayProjectDAL();
            return(bolist);
        }
Example #15
0
        public List <int> displayEmpBAL()
        {
            EmployeeDetailsDAL dl = new EmployeeDetailsDAL();
            // BOClass b = new BOClass();
            List <int> bolist = new List <int>();

            bolist = dl.displayEmpDAL();
            return(bolist);
        }
Example #16
0
        public bool editEmployeeBAL(int can_id, int unit_id, string designation, int Emp_CTC)
        {
            EmployeeDetailsDAL dl = new EmployeeDetailsDAL();
            bool check            = dl.editEmployee(can_id, unit_id, designation, Emp_CTC);

            if (check)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Example #17
0
        public bool insertCandidateBAl(int canID, int unit_id, int project_id, string ishr, DateTime doj, string gender, string designation, int Emp_CTC, string isNew)
        {
            EmployeeDetailsDAL dal = new EmployeeDetailsDAL();
            bool check             = dal.InsertCandidateDAL(canID, unit_id, project_id, ishr, doj, gender, designation, Emp_CTC, isNew);

            if (check)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }