public static bool DeleteTask(string id) { if (string.IsNullOrEmpty(id)) { return(false); } else { return(DALUserPermission.DeleteTask(id)); } }