コード例 #1
0
ファイル: Comprobante.cs プロジェクト: pjeconde/eFact
 public static List<eFact_Entidades.ComprobanteD> ConsultarComprobantesDVigentesXFecha(string FechaDsd, string FechaHst, string CuitEmpresa, CedEntidades.Sesion Sesion)
 {
     eFact_DB.Comprobante c = new eFact_DB.Comprobante(Sesion);
     return c.ConsutarComprobantesDVigentesXFecha(FechaDsd, FechaHst, CuitEmpresa);
 }
コード例 #2
0
ファイル: Comprobante.cs プロジェクト: pjeconde/eFact
 public static void Leer(eFact_Entidades.Comprobante Comprobante, CedEntidades.Sesion Sesion)
 {
     eFact_DB.Comprobante c = new eFact_DB.Comprobante(Sesion);
     c.Leer(Comprobante);
 }
コード例 #3
0
ファイル: Comprobante.cs プロジェクト: pjeconde/eFact
 public static List<eFact_Entidades.ComprobanteC> ConsultarComprobantesCVigentes(string CuitEmpresa, CedEntidades.Sesion Sesion)
 {
     eFact_DB.Comprobante c = new eFact_DB.Comprobante(Sesion);
     return c.ConsutarComprobantesCVigentes(CuitEmpresa);
 }