using System;
using System.Collections.Generic;
using System.Text;
namespace IndianHealthService.BMXNet.Model
{
///
/// This object represents the RPMS Division.
///
///
/// All BMX Broker connections must have an estalibshed Division
public interface Division
{
String Name { get; }
String Ien { get; }
}
}