add csharp version to the exercice

This commit is contained in:
Anis CHAABANI
2019-08-12 18:14:48 +02:00
parent 06fb74cfb3
commit 112854cc8a
10 changed files with 236 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
namespace TheatricalPlayersRefactoringKata
{
public class Performance
{
private string _playID;
private int _audience;
public string PlayID { get => _playID; set => _playID = value; }
public int Audience { get => _audience; set => _audience = value; }
public Performance(string playID, int audience)
{
this._playID = playID;
this._audience = audience;
}
}
}