Exemplo n.º 1
0
 public DropshippingJobs(DropshipAccountsPostgres dbAccounts, DropshipItemsPostgres dbItems, DropshippingService dropship, IRavenClient raven)
 {
     this.dbAccounts = dbAccounts;
     this.dbItems    = dbItems;
     this.raven      = raven;
     this.dropship   = dropship;
 }
Exemplo n.º 2
0
 public UserService(IJwtFactory jwtFactory, IUsersPostgres db, ISecurityHasher hasher,
                    IEmailService email, IRavenClient raven, DropshippingService dropship)
 {
     this.jwtFactory = jwtFactory;
     this.db         = db;
     this.hasher     = hasher;
     this.email      = email;
     this.raven      = raven;
     this.dropship   = dropship;
 }
 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;
 }