Adds IInterface

This commit is contained in:
Cyberboss
2017-11-06 12:50:02 -05:00
parent 68aff86f05
commit f0c93a368d
10 changed files with 112 additions and 63 deletions
+4 -4
View File
@@ -18,15 +18,15 @@ namespace TGControlPanel
public static IDictionary<string, ControlPanel> InstancesInUse { get; private set; } = new Dictionary<string, ControlPanel>();
/// <summary>
/// The <see cref="TGServiceInterface.Interface"/> instance for this <see cref="ControlPanel"/>
/// The <see cref="IInterface"/> instance for this <see cref="ControlPanel"/>
/// </summary>
readonly Interface Interface;
readonly IInterface Interface;
/// <summary>
/// Constructs a <see cref="ControlPanel"/>
/// </summary>
/// <param name="I">The <see cref="TGServiceInterface.Interface"/> for the <see cref="ControlPanel"/></param>
public ControlPanel(Interface I)
/// <param name="I">The <see cref="IInterface"/> for the <see cref="ControlPanel"/></param>
public ControlPanel(IInterface I)
{
InitializeComponent();
Interface = I;