public ArtigosFeedController(ComentariosService service, Contexto db, ArtigosService artigoService)
 {
     this.comentariosService = service;
     this._artigoService     = artigoService;
     this.db = db;
 }
Example #2
0
 public ArtigosController(Contexto contexto, ArtigosService artigoService)
 {
     db             = contexto;
     _artigoService = artigoService;
 }