Ejemplo n.º 1
0
        public async Task <ActionResult <List <Folder> > > Delete(int id)
        {
            await _repo.DeleteEntity(id);

            return(await _repo.GetAllEntitiesAsync());
        }