public DropshippingJobs(DropshipAccountsPostgres dbAccounts, DropshipItemsPostgres dbItems, DropshippingService dropship, IRavenClient raven) { this.dbAccounts = dbAccounts; this.dbItems = dbItems; this.raven = raven; this.dropship = dropship; }
public DropshippingService(ShopifyService shopify, ISearchService search, OAuthPostgres dbOauth, OAuthService oauthdb, DropshipItemsPostgres dbItems, DropshipAccountsPostgres dbAccounts, IApplicationCache cache) { this.shopify = shopify; this.search = search; this.dbItems = dbItems; this.dbAccounts = dbAccounts; this.cache = cache; this.dbOAuth = dbOauth; this.oauthdb = oauthdb; }
public DropshippingController(DropshippingService dropship, ISearchService search, ShopifyService shopify, OAuthService oauthdb, DropshipItemsPostgres dbItems, DropshipAccountsPostgres dbAccounts, IRavenClient raven) { this.dropship = dropship; this.raven = raven; this.shopify = shopify; this.oauthdb = oauthdb; this.dbItems = dbItems; this.dbAccounts = dbAccounts; this.search = search; }