1234567891011121314151617181920212223242526 |
- using Blue;
- public class MRNavigatorPro : AbstractArchitecture<MRNavigatorPro>
- {
- protected override void OnInit()
- {
- RegisterModel();
- RegisterService();
- RegisterUtility();
- }
- private void RegisterModel()
- {
- }
- private void RegisterService()
- {
- }
- private void RegisterUtility()
- {
- this.RegisterUtility<IGetAngleByTwoPointUtility>(new GetAngleByTwoPointUtility());
- }
- }
|