public ActionResult EditDeliveryNoteItemProperty(DeliveryNoteItemPropertyModel model)
        {
            var result = _itemPropertyService.UpdateService.UpdateColumn(model);

            return(BoolResult(result));
        }
        public ActionResult AddDeliveryNoteItemProperty(DeliveryNoteItemPropertyModel model)
        {
            var result = _itemPropertyService.AddService.AddColumn(model);

            return(BoolResult(result));
        }