Example #1
0
        public async Task <IActionResult> Delete(Guid costId)
        {
            try
            {
                await costService.DeleteAsync(costId);

                return(Ok());
            }
            catch (Exception e)
            {
                return(ExceptionResult(e));
            }
        }