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