示例#1
0
 public DataTable PesquisarSangriaCaixa(int idUsuario, int numCaixa)
 {
     try
     {
         novaSangria = new AcessoDados.SangriaAcessoDados();
         DataTable dadosTabela = new DataTable();
         dadosTabela = novaSangria.PesquisarSangriaCaixa(idUsuario, numCaixa);
         return(dadosTabela);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }