Esempio n. 1
0
 public UserController(
     IAgroBarnSupervisor agroBarnSupervisor,
     IMapper mapper
     )
 {
     _agroBarnSupervisor = agroBarnSupervisor;
     _mapper             = mapper;
 }
Esempio n. 2
0
 public BreedController(
     IMapper mapper,
     IAgroBarnSupervisor agroBarnSupervisor
     )
 {
     _mapper             = mapper;
     _agroBarnSupervisor = agroBarnSupervisor;
 }
Esempio n. 3
0
 public MessageController(
     IMapper mapper,
     IAgroBarnSupervisor agroBarnSupervisor
     )
 {
     _mapper             = mapper;
     _agroBarnSupervisor = agroBarnSupervisor;
 }