using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Alura.Loja.Testes.ConsoleApp { public class Promocao { public int Id { get; set; } public string Descricao { get; internal set; } public DateTime DataInicio { get; internal set; } public DateTime DataTermino { get; internal set; } public IList Produtos { get; internal set; } } }
//---------------
using System.Collections.Generic;
namespace Alura.Loja.Testes.ConsoleApp { public class Produto { public int Id { get; internal set; } public string Nome { get; internal set; } public string Categoria { get; internal set; } public double PrecoUnitario { get; internal set; } public string Unidade { get; internal set; } public IList Promocoes { get; set; }
public override string ToString()
{
return $"Produto: { this.Id}, { this.Nome},{ this.Categoria},{ this.PrecoUnitario}";
}
}
}