예제 #1
0
        public async Task <ActionResult <Technology> > PostTechnology(Technology technology)
        {
            await repository.CreateAsync(technology);

            return(CreatedAtAction("GetTechnology", new { id = technology.Id }, technology));
        }