Example #1
0
 public LicenseController(IStoreLicenseDataStore storeLicenseData, IUserDataStore userData, IStripeServiceDS stripeServiceDS, ICardDataStore cardDataStore, ISubcriptionDataStore subcriptionDataStore)
 {
     storeLicenseDataStore     = storeLicenseData;
     userDataStore             = userData;
     this.StripeServiceDS      = stripeServiceDS;
     this.cardDataStore        = cardDataStore;
     this.SubcriptionDataStore = subcriptionDataStore;
 }
        public StoreController(IStoreDataStore storeData, IUserDataStore userData, IProductDataStore productData, IStoreLicenseDataStore storeLicenseData, IOrderDataStore orderData, IEmployeeDataStore employeeData, IRequestDataStore requestData, IUserConnectedDataStore userConnectedDataStore, ICardDataStore cardDataStore, IStripeServiceDS stripeServiceDS, ISubcriptionDataStore subcriptionDataStore)
        {
            userDataStore               = userData;
            StoreDataStore              = storeData;
            productDataStore            = productData;
            storeLicenseDataStore       = storeLicenseData;
            orderDataStore              = orderData;
            employeeDataStore           = employeeData;
            RequestDataStore            = requestData;
            this.userConnectedDataStore = userConnectedDataStore;

            this.cardDataStore        = cardDataStore;
            this.stripeServiceDS      = stripeServiceDS;
            this.subcriptionDataStore = subcriptionDataStore;

            //UsersConnected = usersConnected;
        }