コード例 #1
0
ファイル: SaidaNegocio.cs プロジェクト: UCLINF-20152-PI1/Zeta
 public bool Delete(Saida exit)
 {
     try
     {
         DadosdaSaida.Excluir(exit);
         return true;
     }
     catch (Exception e)
     {
         throw e;
     }
 }
コード例 #2
0
ファイル: SaidaNegocio.cs プロジェクト: UCLINF-20152-PI1/Zeta
 public bool Insert(Saida exit)
 {
     try
     {
         DadosdaSaida.Inserir(exit);
         return true;
     }
     catch (Exception e)
     {
         throw e;
     }
 }
コード例 #3
0
ファイル: SaidaNegocio.cs プロジェクト: UCLINF-20152-PI1/Zeta
 public bool Alter(Saida exit)
 {
     try
     {
         DadosdaSaida.Alterar(exit);
         return true;
     }
     catch (Exception e)
     {
         throw e;
     }
 }
コード例 #4
0
ファイル: SaidaNegocio.cs プロジェクト: UCLINF-20152-PI1/Zeta
 public Saida montarsaida(int cod_fornecedor, int cod_church, float Value, string Type_Output, DateTime Output_Date)
 {
     Saida retorno = new Saida(cod_fornecedor, cod_church, Value, Type_Output, Output_Date);
     return retorno;
 }