public bool CheckEmployeePassword(string username, string password)
 {
     try
     {
         if (EmployeeAccessor.CheckPassword(username, password))
         {
             return(true);
         }
     }
     catch (Exception)
     {
         throw;
     }
     return(false);
 }