Ejemplo n.º 1
0
 public Task ReplaceRegiaoAsync(WafclastRegiao regiao)
 => Regioes.ReplaceOneAsync(x => x.Id == regiao.Id, regiao, new ReplaceOptions {
     IsUpsert = true
 });
Ejemplo n.º 2
0
 public Task <WafclastRegiao> GetRegiaoAsync(int id)
 => Regioes.Find(x => x.Id == id).FirstOrDefaultAsync();