コード例 #1
0
ファイル: WInmuebles.asmx.cs プロジェクト: jvprestige/CRM
 public string InsertAcuerdo(List<AcuerdoFox> ac)
 {
     try
     {
         BLLAcuerdoFox hn = new BLLAcuerdoFox();
         return hn.Acuerdo(ac);
     }
     catch (Exception ex)
     {
         return ex.ToString();
     }
 }
コード例 #2
0
ファイル: ServicioCRM.cs プロジェクト: jvprestige/CRM
        public void InsertAcuerdo(List<AcuerdoFox> ac)
        {
            try
            {
                BLLAcuerdoFox hn = new BLLAcuerdoFox();
                hn.Acuerdo(ac);
            }
            catch (Exception ex) {

                eventLog1.WriteEntry(ex.ToString());
            }
        }
コード例 #3
0
ファイル: WAcuerdosFox.asmx.cs プロジェクト: jvprestige/CRM
 public void InsertAcuerdo(List<AcuerdoFox> ac)
 {
     BLLAcuerdoFox hn = new BLLAcuerdoFox();
     hn.Acuerdo(ac);
 }