예제 #1
0
 public static void Insert(Product sp)
 {
     using (var db = new ShopSmartPhoneConnectionDB())
     {
         db.Insert(sp);
     }
 }
예제 #2
0
 public static void InsertImage(MoreImage mi)
 {
     using (var db = new ShopSmartPhoneConnectionDB())
     {
         db.Insert(mi);
     }
 }
예제 #3
0
 public static void InsertSpecification(Specification spe)
 {
     using (var db = new ShopSmartPhoneConnectionDB())
     {
         db.Insert(spe);
     }
 }