コード例 #1
0
 public ListClienteUseCase(IClienteGateway repository, IMapper mapper, ICacheGateway cache)
 {
     _mapper     = mapper;
     _repository = repository;
     _cache      = cache;
 }
コード例 #2
0
ファイル: GetPedidoUseCase.cs プロジェクト: raelamorim/Pedido
 public GetPedidoUseCase(IPedidoGateway repository, IMapper mapper, ICacheGateway cache)
 {
     _mapper     = mapper;
     _repository = repository;
     _cache      = cache;
 }
コード例 #3
0
 public ListFaixaUseCase(IFaixaGateway repository, IMapper mapper, ICacheGateway cache)
 {
     _mapper     = mapper;
     _repository = repository;
     _cache      = cache;
 }
コード例 #4
0
 public ListUnidadeUseCase(IUnidadeGateway repository, IMapper mapper, ICacheGateway cache)
 {
     _mapper     = mapper;
     _repository = repository;
     _cache      = cache;
 }
コード例 #5
0
 public ListEstadoUseCase(IEstadoGateway repository, IMapper mapper, ICacheGateway cache)
 {
     _mapper     = mapper;
     _repository = repository;
     _cache      = cache;
 }
コード例 #6
0
 public ListVendedorUseCase(IVendedorGateway repository, IMapper mapper, ICacheGateway cache)
 {
     _mapper     = mapper;
     _repository = repository;
     _cache      = cache;
 }
コード例 #7
0
 public LogController(IVelocidadeTempoLocalizacaoClient client, ICacheGateway cache)
 {
     _client = client;
     _cache  = cache;
 }