Ejemplo n.º 1
0
        public async Task <ActionResult <TipoDTO> > Post([FromBody] TipoCreateDTO tipoCreate)
        {
            var tipo    = mapper.Map <Tipo>(tipoCreate);
            var tipoDTO = mapper.Map <TipoDTO>(await repository.Save(tipo));

            return(new CreatedAtRouteResult("ObtenerTipov2", new { id = tipo.Id }, tipoDTO));
        }
 public Tipo Save(Tipo Tipo)
 {
     return(_tipoRepository.Save(Tipo));
 }