public async Task <ActionResult <TEntity> > Create(TEntity entity) { await service.AddAsync(entity); return(CreatedAtAction("Create", new { id = entity.Id }, entity)); }