public UploadPictureController(IUserService userService, IRemitRecordService remitRecordService, ILogger <UploadPictureController> logger, FolderHandler folderHandler, IUploadPic uploadPic
                                )
 {
     this.logger             = logger;
     this.folderHandler      = folderHandler;
     this.userService        = userService;
     this.remitRecordService = remitRecordService;
     this.uploadPic          = uploadPic;
 }
 public UserAdminController(ILogger <UserAdminController> logger,
                            IMapper mapper,
                            IUserAdminService userAdminService, IUploadPic uploadPicService, IUserService userService)
 {
     this.Logger           = logger ?? throw new ArgumentNullException(nameof(logger));
     this.mapper           = mapper;
     this.userAdminService = userAdminService;
     this.uploadPicService = uploadPicService;
     this.userService      = userService;
 }
 public RemitReviewController(RemitRecordAmlReviewer amlReviewer, RemitTransactionStatusModifier statusModifier, IRemitRecordService remitRecordService, IMapper mapper
                              , IUploadPic uploadPicService, IBankService bankService, INotificationService firebaseService)
 {
     this.amlReviewer         = amlReviewer;
     this.statusModifier      = statusModifier;
     this.remitRecordService  = remitRecordService;
     this._mapper             = mapper;
     this.uploadPicService    = uploadPicService;
     this.bankService         = bankService;
     this.notificationService = firebaseService;
 }
 public RemitValidationHelper(IExchangeRateService exchangeRateService, ICurrencyService currencyService, IRemitSettingService remitSettingService,
                              IDiscountService discountService, IBeneficiaryService beneficiaryService, IUploadPic uploadPicService, IRemitRecordQueryRepositories remitRecordQueryRepositories)
 {
     this.exchangeRateService          = exchangeRateService;
     this.currencyService              = currencyService;
     this.remitSettingService          = remitSettingService;
     this.discountService              = discountService;
     this.beneficiaryService           = beneficiaryService;
     this.uploadPicService             = uploadPicService;
     this.remitRecordQueryRepositories = remitRecordQueryRepositories;
 }
Esempio n. 5
0
 public BannerService(IUploadPic uploadPic, IConfiguration configuration)
 {
     this.uploadPic = uploadPic;
     Configuration  = configuration;
 }