public async Task SaveAllChanges()
 {
     await FancyClass.SaveAsync().ConfigureAwait(false);
 }
 public FancyClassFixture()
 {
     this.querier   = Mock.Of <IQuery>();
     this.commander = Mock.Of <ICommand>();
     this.subject   = new FancyClass(this.querier, this.commander);
 }