33 lines
675 B
C#
33 lines
675 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WpfApp1.Obsluga
|
|
{
|
|
class Zapas
|
|
{
|
|
public Zapas()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
public List<Produkt> produkts = new List<Produkt>() { new Produkt(1, "baton", 3, 2.50), new Produkt(2, "kola", 5, 3.00), new Produkt(3, "chusteczki", 4, 1.50) };
|
|
|
|
|
|
/*void ustawPrdukt(Produkt produkt, string nazwa, int id, int ilosc, float cena)
|
|
{
|
|
produkt.Nazwa = nazwa;
|
|
produkt.Id = id;
|
|
produkt.Ilosc = ilosc;
|
|
produkt.Cena = cena;
|
|
}*/
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|