コード例 #1
0
        public void TestMethod1()
        {
            var target    = new CanalesDbContext();
            var resultado = target.Obtener(17246916);

            Assert.IsTrue(resultado != null);
        }
コード例 #2
0
        public void TestObtenerCuenta()
        {
            var target = new CanalesDbContext();
            var result = target.ObtenerCuenta(12507027);

            Assert.IsTrue(result.FecApertura.Year == 2020);
        }
コード例 #3
0
 public CertificadoQueryHandler()
 {
     this.canalDb           = new CanalesDbContext();
     this.atencionClienteDb = new AtencionClienteDbContext();
     this.iffService        = new InformacionFinanciera();
     this.unicardService    = new UnicardStub();
     this.pdfService        = new ConvertidorPdfService();
 }