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); }