public TrocasController(
     ITrocaService trocaService,
     IMapper mapper
     )
 {
     _trocaService = trocaService;
     _mapper       = mapper;
 }
 public TrocaController(ITrocaService service) : base(service)
 {
 }
Пример #3
0
 public TrocaAppService(ITrocaService trocaService)
     : base(trocaService)
 {
     _trocaService = trocaService;
 }