コード例 #1
0
 public OrganizationCreatedHandler(IHandler handler,
                                   IOrganizationRepository organizationRepository,
                                   IGroupServiceClient groupServiceClient,
                                   IOrganizationCache cache)
 {
     _handler = handler;
     _organizationRepository = organizationRepository;
     _groupServiceClient     = groupServiceClient;
     _cache = cache;
 }
 public MemberAddedToOrganizationHandler(IHandler handler,
                                         IOrganizationRepository organizationRepository,
                                         IUserRepository userRepository,
                                         IOrganizationCache cache)
 {
     _handler = handler;
     _organizationRepository = organizationRepository;
     _userRepository         = userRepository;
     _cache = cache;
 }
 public OrganizationCreatedHandler(IHandler handler,
                                   IOrganizationRepository organizationRepository,
                                   IUserRepository userRepository,
                                   IGroupServiceClient groupServiceClient,
                                   IOrganizationCache organizationCache,
                                   IUserCache userCache)
 {
     _handler = handler;
     _organizationRepository = organizationRepository;
     _userRepository         = userRepository;
     _groupServiceClient     = groupServiceClient;
     _organizationCache      = organizationCache;
     _userCache = userCache;
 }
コード例 #4
0
 public GroupCreatedHandler(IHandler handler,
                            IGroupRepository groupRepository,
                            IOrganizationRepository organizationRepository,
                            IGroupServiceClient groupServiceClient,
                            IGroupCache groupCache,
                            IOrganizationCache organizationCache)
 {
     _handler                = handler;
     _groupRepository        = groupRepository;
     _organizationRepository = organizationRepository;
     _groupServiceClient     = groupServiceClient;
     _groupCache             = groupCache;
     _organizationCache      = organizationCache;
 }