private static bool HasNotFoundQuantity(OrderForm form) => form.Count == 0;
 private static bool HasNotFoundDate(OrderForm form) => form.DeliveryDate == null;
 private static bool HasNotFoundFoodItem(OrderForm form) => string.IsNullOrEmpty(form.Item);