// create employer profile
 public bool CreateEmployerProfile(Employer Emp)
 {
     bool result = false;
     // 'using DAL; namespace allows for the created of an instance of the public class DALRecruiterWebsiteManager()
     DALRecruiterWebsiteManager DALRWebMngr = new DALRecruiterWebsiteManager();
     try 
     {
         result = DALRWebMngr.CreateEmpProfile(Emp);
     }
     catch (Exception ex)
     {
         throw;
     }
     return result;
 }