public bool Delete(Saida exit) { try { DadosdaSaida.Excluir(exit); return true; } catch (Exception e) { throw e; } }
public bool Insert(Saida exit) { try { DadosdaSaida.Inserir(exit); return true; } catch (Exception e) { throw e; } }
public bool Alter(Saida exit) { try { DadosdaSaida.Alterar(exit); return true; } catch (Exception e) { throw e; } }
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; }