예제 #1
0
        public ApiResponse AddWorkOrderPayment(WorkOrderPaymentDTO workOrderPayment)
        {
            ApiResponse response = new ApiResponse();

            response.Id = inventoryManager.AddWorkOrderPayment(workOrderPayment);
            return(response);
        }