Esempio n. 1
0
        public SqlAuditor(string connString)
        {
            if (connString == null)
            {
                throw new ArgumentNullException("connString");
            }

            this.context = new CommerceObjectContext(connString);
        }
        public SqlCampaignRepository(string connString)
        {
            if (connString == null)
            {
                throw new ArgumentNullException("connString");
            }

            this.context = new CommerceObjectContext(connString);
        }
Esempio n. 3
0
 public SqlCurrency(string currencyCode, string connString)
 {
     this.code = currencyCode;
     this.context = new CommerceObjectContext(connString);
 }
Esempio n. 4
0
 public SqlBasketRepository(string connString)
 {
     this.context =
         new CommerceObjectContext(connString);
 }
 public SqlProductRepository(string connString)
 {
     this.context =
         new CommerceObjectContext(connString);
 }
 public SqlCurrency(string currencyCode, string connString)
 {
     this.code    = currencyCode;
     this.context = new CommerceObjectContext(connString);
 }