Beispiel #1
0
        public async Task <ActionResult <User> > Remove(int Id)
        {
            User check = CRUD.DeleteById(Id);

            if (check == null)
            {
                return(NotFound());
            }
            return(check);
        }