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