Exemple #1
0
 // Tercer Constructor: tipo, nombre, arma y aviso
 public Tanque(string nombre, IArma arma, IAviso aviso)
 {
     this.tipo   = "tanque";
     this.nombre = nombre;
     this.arma   = arma;
     this.aviso  = aviso;
 }
Exemple #2
0
 // Tercer Constructor: tipo, nombre, arma y aviso
 public Soldado(string nombre, IArma arma, IAviso aviso)
 {
     this.tipo   = "soldado";
     this.nombre = nombre;
     this.arma   = arma;
     this.aviso  = aviso;
 }
Exemple #3
0
        public static void SendEmail(IAviso aviso)
        {
            Application application = new Application();
            var         mailItem    = (MailItem)application.CreateItem(OlItemType.olMailItem);

            mailItem.To       = string.Join(";", aviso.To);
            mailItem.Subject  = aviso.ToString();
            mailItem.HTMLBody = CreateHtml(aviso).Result;
            mailItem.Display();
        }
Exemple #4
0
        private async static Task <string> CreateHtml(IAviso aviso)
        {
            TextReader template = new StreamReader(@"Template.html");
            string     html     = template.ReadToEnd();
            var        context  = BrowsingContext.New(Configuration.Default);
            var        document = await context.OpenAsync(req => req.Content(html));

            #region Datos de la cabecera
            document.QuerySelector("#notaDeVenta").InnerHtml = aviso.NotaDeVenta;
            document.QuerySelector("#potencia").InnerHtml    = aviso.Potencia;
            #endregion Fin datos de la cabecera


            #region Tabla
            var tbody = document.QuerySelector("table > tbody");

            foreach (var plano in aviso.Planos)
            {
                //creo la fila
                var tr = document.CreateElement("tr");
                tr.AppendChild(CreateCell(document, plano.Codigo));
                tr.AppendChild(CreateCell(document, plano.Title));
                tr.AppendChild(CreateCell(document, plano.Revision.ToString()));
                tr.AppendChild(CreateCell(document, "Código"));
                tr.AppendChild(CreateCell(document, "Título"));
                tr.AppendChild(CreateCell(document, "Revisión"));
                tr.AppendChild(CreateCell(document, plano.Modificaciones));
                tr.AppendChild(CreateCell(document, "Estado"));
                tr.AppendChild(CreateCell(document, plano.AccionASeguir));
                tr.AppendChild(CreateCell(document, "Observaciones"));
                tbody.AppendChild(tr);
            }
            #endregion


            return(document.DocumentElement.OuterHtml);
        }