22 lines
675 B
C#
22 lines
675 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WpfApp1.Obsluga
|
|
{
|
|
class Magazyn
|
|
{
|
|
public Magazyn()
|
|
{
|
|
}
|
|
|
|
public Pracownik Edmund = new Pracownik("Edmund", 1, 2000, DateTime.Parse("2014-09-14 08:00:00"), DateTime.Parse("2014-09-14 14:00:00"));
|
|
public Pracownik Maja = new Pracownik("Maja", 2, 4000, DateTime.Parse("2014-09-14 14:01:00"), DateTime.Parse("2014-09-14 20:00:00"));
|
|
|
|
//public List<Pracownik> pracowniks = new List<Pracownik> { new Pracownik("Edmund", 1, 15.15), new Pracownik("Maja", 2, 25.05) };
|
|
|
|
}
|
|
}
|