예제 #1
0
 public void RemoveDiscount()
 {
     Assert.DoesNotThrowAsync(async() => await _service.Remove(1));
 }
        public async Task <ActionResult> Delete(int id)
        {
            await _service.Remove(id);

            return(Ok());
        }