public void Setup()
        {
            leche = new ProductoMateriaPrima().SetNombre("leche").SetCantidad(15).
                    SetCostoUnitario(2000).SetUnidadDeMedida(UnidadDeMedida.Litros);

            azucar = new ProductoMateriaPrima().SetNombre("Azucar").SetCantidad(10).
                     SetCostoUnitario(1000).SetUnidadDeMedida(UnidadDeMedida.Libras);

            ArinaPan = new ProductoMateriaPrima().SetNombre("Arina Pan").SetCantidad(0.5).
                       SetCostoUnitario(1000).SetUnidadDeMedida(UnidadDeMedida.Litros);

            calderoLeche = new ProductoParaFabricarDuro().SetNombre("Caldero de Leche");
            calderoLeche.PorcentajeDeUtilidad = 30;

            BandejaSelloPlus4Onzas =
                new ProductoMateriaPrima().SetNombre("Bandeja de Sello Plus de 4 Onzas").
                SetCantidad(1).SetCostoUnitario(300).SetUnidadDeMedida(UnidadDeMedida.Litros);
            BandejaSelloPlus4Onzas.SetCantidad(4);

            PresentacionBandejaSelloPlus4Onzas =
                new ProductoParaVenderConEnvoltorio().SetNombre
                    ("Presentacion de Bandeja Sello Plus 4 Onzas");
            PresentacionBandejaSelloPlus4Onzas.SetEnvoltorio(BandejaSelloPlus4Onzas);

            tercero         = new Tercero.TerceroBuilder("Duvan", "1065840833").Build();
            TerceroEmpleado = new TerceroEmpleado(tercero);
            Administrador   = new TerceroPropietario(tercero);
            Administrador.Productos.Add(leche);


            materiasPrimas = new List <ProductoMateriaPrima>();
            materiasPrimas.Add(leche);
            materiasPrimas.Add(ArinaPan);
            materiasPrimas.Add(azucar);
            Administrador.Productos.Add(azucar);
            Administrador.Productos.Add(PresentacionBandejaSelloPlus4Onzas);

            UnidadesDeLeche = new ProductoParaVenderSinEnvoltorio();
        }