Ejemplo n.º 1
0
 public PlatformsController(
     IPlatformRepo repo,
     IMapper mapper,
     ICommandDataClient commandDataClient,
     IMessageBusClient messageBusClient)
 {
     _repo              = repo;
     _mapper            = mapper;
     _commandDataClient = commandDataClient;
     _messageBusClient  = messageBusClient;
 }
Ejemplo n.º 2
0
 public PlatformService(IPlatformRepo repo)
 {
     _repo = repo;
 }
Ejemplo n.º 3
0
 public PlatformsController(IPlatformRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
Ejemplo n.º 4
0
 public GrpcPlatformService(IPlatformRepo repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }