public bool CheckForUser(Employee employee) { try { employee = employee_db.Db_Find_User(employee); if (employee == null) { return(false); } return(true); } catch { throw new Exception("Something went wrong."); } }