using Blue; public class MRNavigatorPro : AbstractArchitecture { protected override void OnInit() { RegisterModel(); RegisterService(); RegisterUtility(); } private void RegisterModel() { } private void RegisterService() { this.RegisterService(new SendLogService()); } private void RegisterUtility() { this.RegisterUtility(new GetAngleByTwoPointUtility()); this.RegisterUtility(new GetFileNameUtility()); } }