Exemplo n.º 1
0
 /// <summary>
 /// Inicializa una nueva instancia de la clase <see cref="T:Categoria>Service"/>.
 /// </summary>
 /// <remarks>
 /// Constructor de la clase <see cref="T:CategoriaServices"/>.
 /// </remarks>
 public CategoriaServices() : base()
 {
     this.categoriaMapper = new CategoriaMapper();
 }
Exemplo n.º 2
0
 public CategoriaController(ICategoriaRepository categoriaRepository, ICategoriaMapper categoriaMapper)
 {
     _categoriaRepository = categoriaRepository;
     _categoriaMapper     = categoriaMapper;
 }