Add state pattern example

This commit is contained in:
Petrutiu Mihai
2016-06-30 10:34:56 +03:00
parent 8d7babb645
commit 10175aca16
13 changed files with 189 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StatePattern.TVExample
{
public class TVOnState : ITVState
{
public void OnPowerButtonPresed()
{
Console.WriteLine("TV turning off");
}
}
}