Ejemplo n.º 1
0
        public async Task <ActionResult <TEntity> > Create(TEntity entity)
        {
            await service.AddAsync(entity);

            return(CreatedAtAction("Create", new { id = entity.Id }, entity));
        }