예제 #1
0
 public UserController(
     IAgroBarnSupervisor agroBarnSupervisor,
     IMapper mapper
     )
 {
     _agroBarnSupervisor = agroBarnSupervisor;
     _mapper             = mapper;
 }
예제 #2
0
 public BreedController(
     IMapper mapper,
     IAgroBarnSupervisor agroBarnSupervisor
     )
 {
     _mapper             = mapper;
     _agroBarnSupervisor = agroBarnSupervisor;
 }
예제 #3
0
 public MessageController(
     IMapper mapper,
     IAgroBarnSupervisor agroBarnSupervisor
     )
 {
     _mapper             = mapper;
     _agroBarnSupervisor = agroBarnSupervisor;
 }