Пример #1
0
 public InMemoryReminderTable(IGrainFactory grainFactory)
 {
     this.reminderTableGrain = grainFactory.GetGrain <IReminderTableGrain>(ReminderTableGrainId);
 }
Пример #2
0
 public InMemoryReminderTable(IGrainFactory grainFactory, ISiloLifecycle siloLifecycle)
 {
     this.reminderTableGrain = grainFactory.GetGrain <IReminderTableGrain>(Constants.ReminderTableGrainId);
     this.siloLifecycle      = siloLifecycle;
 }