コード例 #1
0
 public GroupMessageFactory
 (
     IManageGroupRepository manageGroupRepository,
     IUserInformationService userInformationService
 )
 {
     _manageGroupRepository  = manageGroupRepository;
     _userInformationService = userInformationService;
 }
コード例 #2
0
 public ManageGroupController(
     IManageGroupRepository manageGroupRepository,
     ISubGroupRepository subGroupRepository,
     UserManager <IdentityUser> userManager,
     IGroupRepository groupRepository
     )
 {
     this.manageGroupRepository = manageGroupRepository;
     this.subGroupRepository    = subGroupRepository;
     this.userManager           = userManager;
     this.groupRepository       = groupRepository;
 }