Exemplo n.º 1
0
 public CoffeeRoastingEventRepository(
     ICoffeeRoastingEventMapper mapper,
     ICoffeeRoastingEventDataLayer dataLayer)
 {
     _mapper    = mapper;
     _dataLayer = dataLayer;
 }
Exemplo n.º 2
0
 public CoffeeRoastingEventsController(
     IMediator mediator,
     ICoffeeRoastingEventMapper mapper)
 {
     _mediator = mediator;
     _mapper   = mapper;
 }