Beispiel #1
0
 /// <summary>
 /// Rolls SMS usage
 /// </summary>
 public void RollSMSEntry(string username, DateTime? billingDate)
 {
     try
     {
         Mongo MongoWrite = new Mongo();
         MongoWrite.RollUsage(username, billingDate);
     }
     catch (Exception ex)
     {
         Logger.WriteErrorLog(ex);
     }
 }