Пример #1
0
        public async Task <string> AddLineItem(long id, [FromBody] IList <BillLineItem> lineItems)
        {
            await _billService.AddLineItem(id, lineItems);

            return("Ok");
        }