Initial Commit

This commit is contained in:
2016-07-27 00:32:34 -04:00
commit 8d162b2035
701 changed files with 188672 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Pluto.Api;
namespace Pluto.MSL.Api
{
public partial class HiddenMainForm : Form
{
/// <summary>
/// Expose the Pluto Object for the API
/// </summary>
internal IMSLSpecific fMSLSpecific = null;
internal IAuthentication fAuthentication = null;
internal IBilling fBilling = null;
public HiddenMainForm()
{
InitializeComponent();
}
private void HiddenMainForm_Load(object sender, EventArgs e)
{
fMSLSpecific = CoMSLSpecific.Create(binMessage, ClientChannel);
fAuthentication = CoAuthentication.Create(binMessage, ClientChannel);
fBilling = CoBilling.Create(binMessage, ClientChannel);
MSLSpecific_AsyncProxy dd = new MSLSpecific_AsyncProxy(binMessage, ClientChannel);
//dd.BeginGetExternalPort(
//Co
}
}
}