public DetranVerificadorPontosDecoratorLogger(
     IDetranVerificadorPontosService inner,
     ILogger <DetranVerificadorPontosDecoratorLogger> logger)
 {
     _Inner  = inner;
     _Logger = logger;
 }
Esempio n. 2
0
 public DetranVerificadorPontosDecoratorCache(
     IDetranVerificadorDebitosService inner,
     IDistributedCache cache)
 {
     _Inner = (IDetranVerificadorPontosService)inner;
     _Cache = cache;
 }
 public PontosController(IMapper mapper, IDetranVerificadorPontosService detranVerificadorPontosServices)
 {
     _Mapper = mapper;
     _DetranVerificadorPontosServices = detranVerificadorPontosServices;
 }