// get employer login

        public Employer GetEmployerLogin(string empUName, string empSHPwd)
        {
            // string variable to be returned:
            Employer Emp = null;
            
            DALRecruiterWebsiteManager DALRWebMngr = new DALRecruiterWebsiteManager();
            try
            {
                // call method from DAL to return string
                Emp = DALRWebMngr.GetEmpLogin(empUName, empSHPwd);

                
            }
            catch (Exception ex)
            {
                throw;
            }

            return Emp;
        }