コード例 #1
0
ファイル: AccesoDomiciliaciones.cs プロジェクト: RLC-Crew/CGP
 public DataSet TraerResumenDomic(DateTime FechaDesde, DateTime FechaHasta)
 {
     try
     {
         Dat_PC_Domiciliacion acceso = new Dat_PC_Domiciliacion();
         DataSet to = acceso.TraerResumenDomic(FechaDesde, FechaHasta, System.Web.HttpContext.Current.User.Identity.Name, System.Web.HttpContext.Current.Request.UserHostAddress);
         return to;
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #2
0
ファイル: AccesoDomiciliaciones.cs プロジェクト: RLC-Crew/CGP
 public DataSet TraerDomiciliacionesPorEnvio(string NumeroEnvio)
 {
     try
     {
         Dat_PC_Domiciliacion acceso = new Dat_PC_Domiciliacion();
         DataSet to = acceso.TraerDomiciliacionesPorEnvio(NumeroEnvio, System.Web.HttpContext.Current.User.Identity.Name, System.Web.HttpContext.Current.Request.UserHostAddress);
         return to;
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #3
0
ファイル: AccesoDomiciliaciones.cs プロジェクト: RLC-Crew/CGP
 public long CrearEnvioADA(DateTime FechaCiclo, ref long NumeroEnvio, ref int Consecutivo)
 {
     try
     {
         Dat_PC_Domiciliacion acceso = new Dat_PC_Domiciliacion();
         long to = acceso.CrearEnvioADA(FechaCiclo, ref NumeroEnvio, ref Consecutivo, System.Web.HttpContext.Current.User.Identity.Name, System.Web.HttpContext.Current.Request.UserHostAddress);
         return to;
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #4
0
ファイル: AccesoDomiciliaciones.cs プロジェクト: RLC-Crew/CGP
 public DataSet TraeCantidadDomicPendientes(string TipoOperacion)
 {
     try
     {
         Dat_PC_Domiciliacion acceso = new Dat_PC_Domiciliacion();
         DataSet to = acceso.TraeCantidadDomicPendientes(TipoOperacion, System.Web.HttpContext.Current.User.Identity.Name, System.Web.HttpContext.Current.Request.UserHostAddress);
         return to;
     }
     catch (Exception)
     {
         throw;
     }
 }