예제 #1
0
파일: model.cs 프로젝트: pazajac/Csharp
 public MebleBiurowe(biurowe nazwa, float cena, string obj, int ilosc)
 {
     this.Biur = nazwa;
     this.Cena = cena;
     this.Objetosc = obj;
     this.Ilosc = ilosc;
 }
예제 #2
0
파일: model.cs 프로젝트: pazajac/Csharp
 public BiuroweMebleBuilder(biurowe b, float c, string o, int i)
 {
     meble = new MebleBiurowe(b, c, o, i);
 }
예제 #3
0
파일: model.cs 프로젝트: pazajac/Csharp
 protected void ZmienNazweBiur(biurowe b)
 {
     this.biur = b;
 }