// <ReferenceInclude>"BrowseRayons.dll"</ReferenceInclude>
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Windows.Forms;
using MercatorApi;
using BrowseRayons;
using MercatorUi;
namespace Billing
{
public class Customizer : MercatorUi.ICustomizers.IFormLoadCustomizer
{
public void FormLoadCustomize(System.Windows.Forms.Form WindowsForm)
{
BrowseRayons.BrowseRayonsForm.Instance.Show();
}
}
}