コード例 #1
0
ファイル: DataBase.cs プロジェクト: JHCalasans/motorapido
 public void EditarInformacaoPendente(InformacaoPendente informacaoPendente)
 {
     _conexao.Update(informacaoPendente);
 }
コード例 #2
0
 public void EditarInformacaoPendente(InformacaoPendente informacaoPendente)
 {
     _dataBase.EditarInformacaoPendente(informacaoPendente);
 }
コード例 #3
0
ファイル: DataBase.cs プロジェクト: JHCalasans/motorapido
 public void AdicionarInformacaoPendente(InformacaoPendente informacaoPendente)
 {
     _conexao.Insert(informacaoPendente);
 }
コード例 #4
0
 public void AdicionarInformacaoPendente(InformacaoPendente informacaoPendente)
 {
     _dataBase.AdicionarInformacaoPendente(informacaoPendente);
 }