Ejemplo n.º 1
0
        public async Task <ActionResult> Delete(string ID)
        {
            try
            {
                var status = await service.Delete(Convert.ToInt32(ID));

                return(Json(data: status));
            }
            catch (Exception)
            {
                throw;
            }
        }