Skip to content

Commit

Permalink
Add Transaction class. First time didn't push
Browse files Browse the repository at this point in the history
  • Loading branch information
kyrylokondrashov committed May 11, 2018
1 parent 6e53b8b commit 058cb28
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions BSA_homework/Transaction.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BSA_homework
{
class Transaction
{
public DateTime tranactionDate { get; }
public uint curId { get; }

public float moneyRemobeBalance { get; }

public Transaction (uint id, float money, DateTime date)
{
curId = id;
moneyRemobeBalance = money;
tranactionDate = date;
}

}
}

0 comments on commit 058cb28

Please sign in to comment.