33 lines
630 B
Plaintext
33 lines
630 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Haftmittel
|
|
{
|
|
public class ClassSkladnik
|
|
{
|
|
private Int32 _id = 0;
|
|
private string _kod = string.Empty;
|
|
private string _nazwa = string.Empty;
|
|
|
|
public Int32 Id
|
|
{
|
|
get { return _id; }
|
|
set { _id = value; }
|
|
}
|
|
|
|
public string Kod
|
|
{
|
|
get { return _kod; }
|
|
set { _kod = value; }
|
|
}
|
|
|
|
public string Nazwa
|
|
{
|
|
get { return _nazwa.Trim(); }
|
|
set { _nazwa = value; }
|
|
}
|
|
}
|
|
}
|