示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PlayerInMemoryContext"/> class.
 /// </summary>
 /// <param name="manager">The manager which holds the memory repositories.</param>
 public PlayerInMemoryContext(InMemoryRepositoryManager manager)
     : base(manager)
 {
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GuildServerInMemoryContext"/> class.
 /// </summary>
 /// <param name="manager">The manager which holds the memory repositories.</param>
 public GuildServerInMemoryContext(InMemoryRepositoryManager manager)
     : base(manager)
 {
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InMemoryContext"/> class.
 /// </summary>
 /// <param name="manager">The manager which holds the memory repositories.</param>
 public InMemoryContext(InMemoryRepositoryManager manager)
 {
     this.manager = manager;
 }