コード例 #1
0
ファイル: UserManageService.cs プロジェクト: ywscr/Vulcan
 public UserManageService(IUserManageRepository repo, IOrgManageService orgService)
 {
     this._repo       = repo;
     this._orgService = orgService;
 }
コード例 #2
0
ファイル: OrgController.cs プロジェクト: ywscr/Vulcan
 public OrgController(IOrgManageService service, IAppContextService contextService)
 {
     this._service        = service;
     this._contextService = contextService;
 }