Beispiel #1
0
 public void EditUserTotalProfit(int id, int newTotalProfit)
 {
     try
     {
         using (var db = new connectionsLinqDataContext())
         {
             db.EditUserTotalProfit(id, newTotalProfit);
         }
     }
     catch (Exception)
     {
         return;
     }
 }