Exemplo n.º 1
0
 public DisciplinesController(DisciplinesService discipliesService, DisciplinesValidation validatior)
 {
     this.disciplinesService = discipliesService;
     this.validatior         = validatior;
 }
Exemplo n.º 2
0
 public DisciplineDBsController(AppdbContext context, IWebHostEnvironment webHost)
 {
     _context           = context;
     _webHost           = webHost;
     _disciplineService = new DisciplinesService(context, webHost);
 }