DemoBlazeAutomation / POM / Models / ProductModel.cs
ProductModel.cs
Raw
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DemoBlazeAutomation.POM.Models
{
    /// <summary>
    /// Es la representación en C# de un producto modelo dentro de la pagina web.
    /// Esta información es necesaria para  
    /// </summary>
    public class ProductModel
    {
        public string Name { get; set; }
        public decimal Price { get; set; }
        public string Description { get; set; }
        public ProductModel(string name, decimal price, string description)
        {
            Name = name;
            Price = price;
            Description = description;
        }
    }
}