public bool DeleteUser(Guid id) { try { _usersDAL.DeleteUser(id); return(true); } catch { return(false); } }