Exemple #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="user"></param>
 /// <param name="fileProvider"></param>
 /// <param name="batchId"></param>
 /// <param name="xml"></param>
 public void ProcessTransactionLog(User user, string batchId, string xml, IDS2019FileProvider fileProvider)
 {
     Contract.Requires(user != null, "The user must not be null.");
     Contract.Requires(xml != null, "The xml must not be null.");
     Contract.Requires(fileProvider != null, "The file provider must not be null.");
     Contract.Requires(batchId != null, "The batch id must not be null.");
 }
Exemple #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="user"></param>
 /// <param name="fileProvider"></param>
 /// <param name="batchId"></param>
 /// <param name="xml"></param>
 /// <returns></returns>
 public Task ProcessTransactionLogAsync(User user, string batchId, string xml, IDS2019FileProvider fileProvider)
 {
     Contract.Requires(user != null, "The user must not be null.");
     Contract.Requires(xml != null, "The xml must not be null.");
     Contract.Requires(fileProvider != null, "The file provider must not be null.");
     Contract.Requires(batchId != null, "The batch id must not be null.");
     return(Task.FromResult <object>(null));
 }