Exemplo n.º 1
0
 public SchoolsController(IBALSchool balSchool, IMapper mapper)
 {
     _mapper    = mapper;
     _balSchool = balSchool;
 }
Exemplo n.º 2
0
 public DepartmentsController(IBALDepartment department, IMapper mapper, IBALSchool school)
 {
     _department = department;
     _school     = school;
     _mapper     = mapper;
 }