Dodaj pliki projektów.
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Haftmittel
|
||||
{
|
||||
public class Historia
|
||||
{
|
||||
public DateTime data
|
||||
{ get; set; }
|
||||
public string wartosc
|
||||
{ get; set; }
|
||||
public string opemod
|
||||
{ get; set; }
|
||||
|
||||
public Historia(DateTime d, string w, string o)
|
||||
{
|
||||
data = d;
|
||||
wartosc = w;
|
||||
opemod = o;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return string.Format("{0} {1,-10} {2}", data, opemod, wartosc);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user