Esempio n. 1
0
 public AlunosController(IAlunoApi alunoApi, ITurmaApi turmaApi, AlunoServices alunoServices, TurmaServices turmaServices, IMapper mapper, WebApiContext context)
 {
     this.alunoApi      = alunoApi;
     this.turmaApi      = turmaApi;
     this.AlunoServices = alunoServices;
     this.TurmaServices = turmaServices;
     this.mapper        = mapper;
     this._context      = context;
 }
Esempio n. 2
0
 public AlunoApi(ITurmaApi turmaApi)
 {
     this.turmaApi = turmaApi;
 }