예제 #1
0
 public TaskServiceApp(IMapper mapper, IDdGrpcClientFactory <TaskService.TaskServiceClient> taskClientFactory, ITokenService tokenService, IDdGrpcClientFactory <ParserService.ParserServiceClient> parserClientFactory)
 {
     _mapper              = mapper;
     _taskClientFactory   = taskClientFactory;
     _tokenService        = tokenService;
     _parserClientFactory = parserClientFactory;
 }
예제 #2
0
 public TaskServiceApp(IMapper mapper,
                       IDdGrpcClientFactory <TaskService.TaskServiceClient> taskClientFactory,
                       IDdGrpcClientFactory <RecurrenceService.RecurrenceServiceClient> recurrenceClientFactory)
 {
     _mapper                  = mapper;
     _taskClientFactory       = taskClientFactory;
     _recurrenceClientFactory = recurrenceClientFactory;
 }
예제 #3
0
 public AuthServiceApp(IMapper mapper, IDdGrpcClientFactory <AuthService.AuthServiceClient> clientFactory)
 {
     _mapper        = mapper;
     _clientFactory = clientFactory;
 }