コード例 #1
0
 public ArtigosController(IArtigoService artigoService)
 {
     _artigoService = artigoService;
 }
 public BlogFacade(IArtigoService artigoService, IComentarioService comentarioService, IMapper mapper)
 {
     this.artigoService     = artigoService;
     this.comentarioService = comentarioService;
     this.mapper            = mapper;
 }