コード例 #1
0
ファイル: TenantService.cs プロジェクト: lulzzz/HQ.Platform
 public async Task <Operation <IEnumerable <TTenant> > > FindByEmailAsync(string email)
 {
     return(new Operation <IEnumerable <TTenant> >(await _tenantManager.FindByEmailAsync(email)));
 }