Esempio n. 1
0
 /// <summary>
 /// Configures the saga persister to store saga data of the given type in the specified collection
 /// </summary>
 public MongoDbSagaPersister SetCollectionName <TSagaData>(string collectionName) where TSagaData : ISagaData
 {
     return(mongoDbSagaPersister.SetCollectionName <TSagaData>(collectionName));
 }