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