Exemplo n.º 1
0
 public Boolean VericarNumDocumento(int IdEmpresa, decimal IdProveedor, string tipoDocumento, string Serie, string NumDocumento, ref string mensaje)
 {
     try
     {
         return(data.VericarNumDocumento(IdEmpresa, IdProveedor, tipoDocumento, Serie, NumDocumento, ref mensaje));
     }
     catch (Exception ex)
     {
         Core.Erp.Info.Log_Exception.LoggingManager.Logger.Log(Core.Erp.Info.Log_Exception.LoggingCategory.Error, ex.Message);
         throw new Core.Erp.Info.Log_Exception.DalException(string.Format("", "VericarNumDocumento", ex.Message), ex)
               {
                   EntityType = typeof(cp_orden_giro_Bus)
               };
     }
 }