Exemple #1
0
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member 'PaymentController.PaymentController(IPaymentServices, ILogger<PaymentController>)'
        public PaymentController(IPaymentServices paymentServices,
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member 'PaymentController.PaymentController(IPaymentServices, ILogger<PaymentController>)'
                                 ILogger <PaymentController> logger)
        {
            _paymentServices = paymentServices;
            _logger          = logger;
        }
        //public List<Parcela> Parcelas { get; set; } = new List<Parcela>();

        public Contrato(int number, DateTime data, double value, IPaymentServices paymentService)
        {
            Number         = number;
            Data           = data;
            Value          = value;
            PaymentService = paymentService;
        }
Exemple #3
0
 public Contract(int contractNumber, DateTime contractDate, double contractValue, int installmentsQnt, IPaymentServices paymentService)
 {
     ContractNumber  = contractNumber;
     ContractDate    = contractDate;
     ContractValue   = contractValue;
     InstallmentsQnt = installmentsQnt;
     PaymentService  = paymentService;
 }
Exemple #4
0
 public ManagerPaymentController(IAccountServices AccountServices, IClaimsServices ClaimsServices,
                                 IPaymentServices PaymentServices, IWalletServices WalletServices)
 {
     this._AccountServices = AccountServices;
     this._claimsServices  = ClaimsServices;
     this._paymentServices = PaymentServices;
     this._walletServices  = WalletServices;
 }
Exemple #5
0
 public AdminController(
     IPaymentServices paymentServices,
     DefaultContext dbContext
     )
 {
     this.paymentServices = paymentServices;
     this.dbContext       = dbContext;
 }
 public HomeController(
     ICardServices cardServices,
     IUserServices userServices,
     IPaymentServices paymentServices)
 {
     _cardServices    = cardServices;
     _userServices    = userServices;
     _paymentServices = paymentServices;
 }
Exemple #7
0
 public OwnerController(
     IPaymentServices paymentServices,
     DefaultContext dbContext,
     CurrentUserProvider currentUserProvider
     )
 {
     this.paymentServices     = paymentServices;
     this.dbContext           = dbContext;
     this.currentUserProvider = currentUserProvider;
 }
        //
        // GET: /Profile/

        public ProfileController(
            IPaymentServices paymentServices,
            DefaultContext dbContext,
            ICurrentUserProvider currentUserProvider,
            UserManager <Profile> userManager
            )
        {
            this.paymentServices     = paymentServices;
            this.dbContext           = dbContext;
            this.currentUserProvider = currentUserProvider;
            this.userManager         = userManager;
        }
Exemple #9
0
 public AdminController(IWebHostEnvironment environment, ICardServices cardServices, ICategoryServices categoryServices,
                        IUserServices userServices, IPaymentServices paymentServices, IFeedbackServices feedbackServices,
                        ISubscribleServices emailListServices, ITransactionServices transactionServices)
 {
     _hostingEnvironment  = environment;
     _categoryServices    = categoryServices;
     _cardServices        = cardServices;
     _userServices        = userServices;
     _paymentServices     = paymentServices;
     _feedbackServices    = feedbackServices;
     _emailListServices   = emailListServices;
     _transactionServices = transactionServices;
 }
        //
        // GET: /Object/

        public ObjectController(
            IUniqueViewCounter viewCounter,
            IPaymentServices paymentServices,
            DefaultContext dbContext,
            ObjectsActivator objectsActivator,
            CurrentUserProvider currentUserProvider
            )
        {
            this.viewCounter         = viewCounter;
            this.paymentServices     = paymentServices;
            this.dbContext           = dbContext;
            this.objectsActivator    = objectsActivator;
            this.currentUserProvider = currentUserProvider;
        }
Exemple #11
0
 public PaymentController(
     IPaymentServices paymentServices,
     IOrders orders,
     DefaultContext dbContext,
     ICurrentUserProvider currentUserProvider,
     AppConfiguration configuration
     )
 {
     this.orders              = orders;
     this.dbContext           = dbContext;
     this.currentUserProvider = currentUserProvider;
     this.configuration       = configuration;
     this.paymentServices     = paymentServices;
 }
Exemple #12
0
 public UserController(ICardServices cardServices,
                       IUserServices userServices,
                       IPaymentServices paymentServices,
                       IFeedbackServices feedbackServices,
                       ISubscribleServices emailListServices,
                       ITransactionServices transactionServices)
 {
     _cardServices        = cardServices;
     _userServices        = userServices;
     _paymentServices     = paymentServices;
     _feedbackServices    = feedbackServices;
     _emailListServices   = emailListServices;
     _transactionServices = transactionServices;
 }
 public AccountController(
     IActivationMail activationMail,
     IPasswordResetMail passwordResetMail,
     IPaymentServices paymentServices,
     DefaultContext dbContext,
     AppConfiguration configuration,
     UserManager <Profile> userManager,
     SignInManager <Profile> signInManager,
     IHttpContextAccessor httpContextAccessor
     )
 {
     this.activationMail      = activationMail;
     this.passwordResetMail   = passwordResetMail;
     this.paymentServices     = paymentServices;
     this.dbContext           = dbContext;
     this.configuration       = configuration;
     this.userManager         = userManager;
     this.signInManager       = signInManager;
     this.httpContextAccessor = httpContextAccessor;
 }
Exemple #14
0
 public PaymentController(IPaymentServices paymentServices)
 {
     _paymentServices = paymentServices;
 }
Exemple #15
0
 public UploadController(IHostEnvironment env, IPaymentServices paymentServices)
 {
     _env             = env;
     _paymentServices = paymentServices;
 }
Exemple #16
0
 /// <summary>
 /// Liste DV Constructeur
 /// </summary>
 /// <param name="paymentServices"></param>
 /// <param name="commonServices"></param>
 public PaymentController(IPaymentServices paymentServices, ICommonServices commonServices) : base(commonServices)
 {
     _paymentServices = paymentServices;
 }
 public OrderProcessingServices()
 {
     this.emailservvices  = new EmailServices();
     this.paymentServices = new PaymentServices();
     this.productServices = new ProductCheckServices(new ProductRepository());
 }
 public PaymentPlanServices(IPaymentPlanBusiness paymentPlanBusiness, IPaymentServices paymentServices)
 {
     _paymentPlanBusiness = paymentPlanBusiness;
     _paymentServices     = paymentServices;
 }
Exemple #19
0
 public PaymentController()
 {
     services = new PaymentServices();
 }
Exemple #20
0
 public PaymentController(IPaymentServices services)
 {
     _services = services;
 }