Beispiel #1
0
 public List<pagos_fox> PagosFox(string n)
 {
     BLLPagosFox hn = new BLLPagosFox();
     return hn.PagosNegocio(n);
 }
Beispiel #2
0
        public string InsertPago(PagosFox ac)
        {
            try
            {
                BLLPagosFox hn = new BLLPagosFox();
                return hn.Pagos(ac);
            }
            catch (Exception ex) {

                return ex.ToString();
            }
        }
Beispiel #3
0
 public string InsertPago(PagosFox ac)
 {
     try
     {
         BLLPagosFox hn = new BLLPagosFox();
         return hn.Pagos(ac);
     }
     catch (Exception ex)
     {
         eventLog1.WriteEntry(ex.ToString());
         return ex.ToString();
     }
 }