public ActionResult EditDeliveryNoteProperty(DeliveryNotePropertyModel model)
        {
            var result = _notePropertyService.UpdateService.UpdateColumn(model);

            return(BoolResult(result));
        }
        public ActionResult AddDeliveryNoteProperty(DeliveryNotePropertyModel model)
        {
            var result = _notePropertyService.AddService.AddColumn(model);

            return(BoolResult(result));
        }