Beispiel #1
0
 //Update
 public int UpdateDetails(CartRecord custDB)
 {
     lock (locker)
     {
         return(s.Update(custDB));
     }
 }
Beispiel #2
0
 //Insert
 public int InsertDetails(CartRecord custDB)
 {
     lock (locker)
     {
         return(s.Insert(custDB));
     }
 }