コード例 #1
0
ファイル: ProfileController.cs プロジェクト: timsong/OKOS
 public ProfileController(WFSUserManager wfsUserMgr, OrderProfileManager profManager, SchoolManager schoolMgr)
 {
     this._wfsUserMgr = wfsUserMgr;
     this._profManager = profManager;
     this._schoolMgr = schoolMgr;
 }
コード例 #2
0
ファイル: OrderProfileManager.cs プロジェクト: timsong/OKOS
 public OrderProfileManager(WFSRepository repository, SchoolManager schoolManager)
 {
     _repository = repository;
     _schoolManager = schoolManager;
 }