Beispiel #1
0
        public async Task <IActionResult> Save([FromBody] DtoCareerDay dto)
        {
            var template = Mapper.Map <CareerDay>(dto);

            _context.CareerDays.Add(template);
            await _context.SaveChangesAsync()
            .ConfigureAwait(false);

            return(Ok(template.Id));
        }
Beispiel #2
0
        public async Task <IActionResult> Save([FromBody] DtoBrandedTemplate dto)
        {
            var template = Mapper.Map <BrandedTemplate>(dto);

            _context.BrandedTemplates.Add(template);
            await _context.SaveChangesAsync()
            .ConfigureAwait(false);

            return(Ok(template.Id));
        }