Exemplo n.º 1
0
 public PsychologistBusinessImplementation(IPsychologistRepository repository)
 {
     _repository = repository;
     _converter  = new PsychologistConverter();
 }
Exemplo n.º 2
0
 public PsychologistController(IPsychologistRepository repository, PsychologistContext context, IHostingEnvironment environment)
 {
     _context     = context;
     _repository  = repository;
     _environment = environment;
 }