예제 #1
0
파일: Product.cs 프로젝트: pawlo601/Bazy
        public override string ToString()
        {
            string a = String.Format("Produkt: {0}{4}{4}Typ: {1}{4}{4}Cena:{4}{2}{4}{4}Komentarz:{4}{3}",
                                     NameOfProduct, Type, PriceOfProduct.ToString(), Comments, Environment.NewLine);

            return(a);
        }
예제 #2
0
파일: Product.cs 프로젝트: pawlo601/Bazy
 public void ChangeCurrency(Waluta a)
 {
     PriceOfProduct.ChangeCurrency(a);
 }