예제 #1
0
        public async Task <IActionResult> DeleteValue(int id)
        {
            ServiceResponse <List <GetValuesResponse> > response = await _valuesService.DeleteValue(id);

            if (response.Data == null)
            {
                return(NotFound(response));
            }
            return(Ok(response));
        }