public UpdateDailyPriceHandler(IUnitOfWork unitOfWork, IHttpCallService httpCallService,
                                IDailyPriceService dailyPriceService)
 {
     _unitOfWork        = unitOfWork;
     _httpCallService   = httpCallService;
     _dailyPriceService = dailyPriceService;
 }
Exemplo n.º 2
0
 public HttpCallController(
     IHttpCallService httpCallService, IRequestResponseCoupleService requestResponseCoupleService, IFileUploadManager fileuploadManager)
 {
     _httpCallService     = httpCallService;
     _reqRescoupleService = requestResponseCoupleService;
     _fileuploadManager   = fileuploadManager;
 }
 public UpdatePopularStocksInfoHandler(IUnitOfWork unitOfWork, IHttpCallService httpCallService)
 {
     _unitOfWork      = unitOfWork;
     _httpCallService = httpCallService;
 }
Exemplo n.º 4
0
 public FileUploadManager(IHttpCallService httpCallService, INotificationService notificationService)
 {
     _httpCallService     = httpCallService;
     _notificationService = notificationService;
 }
Exemplo n.º 5
0
        public static async Task <HttpCall> GetNextHttpCall(this IHttpCallService httpCallService, HttpRequest httpRequest)
        {
            var request = await WrapOriginalRequest(httpRequest);

            return(await httpCallService.GetNextHttpCall(request));
        }
Exemplo n.º 6
0
 public KakaoService(IHttpCallService httpCallService, IHttpContextAccessor httpContextAccessor)
 {
     _httpCallService     = httpCallService;
     _httpContextAccessor = httpContextAccessor;
 }