/// <summary> /// This method checks if any administrator exists. /// </summary> /// <returns>False if exists, true if exists.</returns> public bool CanAddExecute() { if (administrators.CheckIfAdministratorExists()) { return(false); } else { return(true); } }