예제 #1
0
        public CategoriaDto Agregar(CategoriaDto dto)
        {
            var entity = new Dominio.Entidades.Entidades.Categoria
            {
                Descripcion = dto.Descripcion,
                EmpresaId   = dto.EmpresaId,
                Eliminado   = false
            };

            _categoriaRepositorio.Agregar(entity);
            Guardar();
            dto.Id = entity.Id;

            return(dto);
        }