Ejemplo 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);
        }
Ejemplo n.º 3
0
 public SqlCurrency(string currencyCode, string connString)
 {
     this.code = currencyCode;
     this.context = new CommerceObjectContext(connString);
 }
Ejemplo n.º 4
0
 public SqlBasketRepository(string connString)
 {
     this.context =
         new CommerceObjectContext(connString);
 }
 public SqlProductRepository(string connString)
 {
     this.context =
         new CommerceObjectContext(connString);
 }
Ejemplo n.º 6
0
 public SqlCurrency(string currencyCode, string connString)
 {
     this.code    = currencyCode;
     this.context = new CommerceObjectContext(connString);
 }