示例#1
0
        // DELETE: api/Groups/5
        public async Task <string> Delete(int id)
        {
            var success = await GroupGenericFacade.DeleteAsync(id);

            if (!success)
            {
                throw new HttpResponseException(HttpStatusCode.NotFound);
            }
            return($"Deleted Group with id: {id}");
        }