示例#1
0
 public int InsertHistoryInvoice(HistoryInvoice pEst)
 {
     try
     {
         return(_AD.InsertHistoryInvoice(pEst));
     }
     catch (Exception ex)
     {
         throw;
     }
 }
示例#2
0
        public int InsertHistoryInvoice(HistoryInvoice pHE)
        {
            string sql = @"[spInsertHistoryInvoice] '{0}', '{1}', '{2}', '{3}'";

            sql = string.Format(sql, pHE.Invoice.Id, pHE.UserCreador.Id, pHE.Type.Id, pHE.History);
            try
            {
                return(_MB.EjecutarSQL(_CN, sql));
            }
            catch (Exception err)
            {
                throw err;
            }
        }
示例#3
0
 public object DeleteHistoryInvoice(HistoryInvoice dHistoryInvoice)
 {
     throw new NotImplementedException();
 }