예제 #1
0
 public SystemStaffService(ISystemStaffRepository staffRepostory,
                           ISystemStaffRoleRepository systemStaffRoleRepository,
                           ISystemSectionRepository systemSectionRepository)
 {
     this._staffRepostory            = staffRepostory;
     this._systemStaffRoleRepository = systemStaffRoleRepository;
     this._systemSectionRepository   = systemSectionRepository;
 }
예제 #2
0
 public SystemRoleService(ISystemRoleRepository systemRoleRepository,
                          ISystemStaffRoleRepository systemStaffRoleRepository,
                          ISystemRoleRulesRepository systemRoleRulesRepository,
                          ISystemMenuRepository systemMenuRepository,
                          ISystemActionButtonRepository systemActionButtonRepository)
 {
     this._systemRoleRepository         = systemRoleRepository;
     this._systemStaffRoleRepository    = systemStaffRoleRepository;
     this._systemRoleRulesRepository    = systemRoleRulesRepository;
     this._systemMenuRepository         = systemMenuRepository;
     this._systemActionButtonRepository = systemActionButtonRepository;
 }
 public SystemStaffRoleService(ISystemStaffRoleRepository systemStaffRoleRepository)
 {
     this._systemStaffRoleRepository = systemStaffRoleRepository;
 }