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);
        }
示例#3
0
 public SqlCurrency(string currencyCode, string connString)
 {
     this.code = currencyCode;
     this.context = new CommerceObjectContext(connString);
 }
 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);
 }