public string InsertAcuerdo(List<AcuerdoFox> ac) { try { BLLAcuerdoFox hn = new BLLAcuerdoFox(); return hn.Acuerdo(ac); } catch (Exception ex) { return ex.ToString(); } }
public void InsertAcuerdo(List<AcuerdoFox> ac) { try { BLLAcuerdoFox hn = new BLLAcuerdoFox(); hn.Acuerdo(ac); } catch (Exception ex) { eventLog1.WriteEntry(ex.ToString()); } }
public void InsertAcuerdo(List<AcuerdoFox> ac) { BLLAcuerdoFox hn = new BLLAcuerdoFox(); hn.Acuerdo(ac); }