public vSL_LIQESTAMPILLAS GetLiquidacion(decimal ID)
 {
     mSL_LIQESTAMPILLAS oSL = new mSL_LIQESTAMPILLAS();
     return oSL.Get(ID);
 }
예제 #2
0
 public vSL_LIQESTAMPILLAS Get(string ID)
 {
     mSL_LIQESTAMPILLAS oSL = new mSL_LIQESTAMPILLAS();
     return oSL.Get(decimal.Parse(ID));
 }
 public ByARpt Insert(vSL_LIQESTAMPILLAS Reg)
 {
     Reg.USUARIO = Usuario.UserName;
     mSL_LIQESTAMPILLAS oSL = new mSL_LIQESTAMPILLAS();
     return oSL.Insert(Reg);
 }
 public List<vSL_LIQESTAMPILLAS> GetsPagadas(string VIGENCIA, string AGENTE, string PERIODO)
 {
     mSL_LIQESTAMPILLAS o = new mSL_LIQESTAMPILLAS();
     return o.GetsPagadas(VIGENCIA, AGENTE, PERIODO);
 }
 public vSL_LIQESTAMPILLAS Get2(decimal NRO_LIQ, string VIGENCIA)
 {
     mSL_LIQESTAMPILLAS oSL = new mSL_LIQESTAMPILLAS();
     return oSL.Get(NRO_LIQ, VIGENCIA);
 }
 public vCONSOLTA_COMPLETA ConsultaLE(string Vigencia, string Periodo, string AgenteRecaudador)
 {
     mSL_LIQESTAMPILLAS osl = new mSL_LIQESTAMPILLAS();
     return osl.ConsultaLE(Vigencia, Periodo, AgenteRecaudador);
 }
 public ByARpt CancelarLiquidacion(decimal ID_LIQ)
 {
     mSL_LIQESTAMPILLAS oSL = new mSL_LIQESTAMPILLAS();
     return oSL.CancelarLiquidacion(ID_LIQ);
 }