Skip to content

Commit

Permalink
v202.0.0.91
Browse files Browse the repository at this point in the history
  • Loading branch information
wybory2014 committed Nov 15, 2014
1 parent 6f90217 commit cdff9cb
Show file tree
Hide file tree
Showing 62 changed files with 27,671 additions and 0 deletions.
52 changes: 52 additions & 0 deletions AdditionalClass/AttendanceItem.cs
@@ -0,0 +1,52 @@
// Decompiled with JetBrains decompiler
// Type: Kalkulator1.AdditionalClass.AttendanceItem
// Assembly: Kalkulator1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 3174950B-2661-44B0-AE1D-C1E9AD8AB005
// Assembly location: D:\Kalkulator\Kalkulator1.exe

namespace Kalkulator1.AdditionalClass
{
internal class AttendanceItem
{
private string id;
private string name;

public string ShortName
{
get
{
return this.id;
}
}

public string LongName
{
get
{
return this.name;
}
}

public AttendanceItem()
{
this.id = "0";
this.name = "";
}

public AttendanceItem(string id, string name)
{
this.id = id;
this.name = name;
}

public string getId()
{
return this.id;
}

public string getName()
{
return this.name;
}
}
}
60 changes: 60 additions & 0 deletions AdditionalClass/AttendanceOBWItem.cs
@@ -0,0 +1,60 @@
// Decompiled with JetBrains decompiler
// Type: Kalkulator1.AdditionalClass.AttendanceOBWItem
// Assembly: Kalkulator1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 3174950B-2661-44B0-AE1D-C1E9AD8AB005
// Assembly location: D:\Kalkulator\Kalkulator1.exe

namespace Kalkulator1.AdditionalClass
{
internal class AttendanceOBWItem
{
private int id;
private string name;
private long lwyb;

public string ShortName
{
get
{
return this.id.ToString();
}
}

public string LongName
{
get
{
return this.name;
}
}

public AttendanceOBWItem()
{
this.id = 0;
this.name = "";
this.lwyb = 0L;
}

public AttendanceOBWItem(int id, string name, long lwyb)
{
this.id = id;
this.name = name;
this.lwyb = lwyb;
}

public int getId()
{
return this.id;
}

public string getName()
{
return this.name;
}

public long getLwyb()
{
return this.lwyb;
}
}
}

0 comments on commit cdff9cb

Please sign in to comment.