Utils/OwnController.cs

23 lines
447 B
C#
Raw Permalink Normal View History

2015-11-16 00:38:57 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace BlubbFish.Utils
{
public abstract class OwnController
{
/// <summary>
/// Führt den Controller aus.
/// </summary>
public void Execute()
2015-11-16 00:38:57 +01:00
{
this.Init();
2015-11-16 00:38:57 +01:00
}
abstract protected void Init();
abstract public void Dispose();
}
2015-11-16 00:38:57 +01:00
}