示例#1
0
文件: Pagamento.cs 项目: tonfranco/LR
 public static bool RealizarPagamento(int idCliente, int idServico, int idTipoPagamento, string dsPagamento)
 {
     using (var ser = new LRBusiness())
     {
         return ser.RealizarPagamento(idCliente, idServico, idTipoPagamento, dsPagamento);
     }
 }