Beispiel #1
0
 public UserGroupStore(
     IObjectMapper objectMapper,
     ICurrentTenant currentTenant,
     IUnitOfWorkManager unitOfWorkManager,
     IUserChatGroupRepository userChatGroupRepository)
 {
     _objectMapper            = objectMapper;
     _currentTenant           = currentTenant;
     _unitOfWorkManager       = unitOfWorkManager;
     _userChatGroupRepository = userChatGroupRepository;
 }
 public UserGroupStore(
     IUserChatGroupRepository userChatGroupRepository)
 {
     UserChatGroupRepository = userChatGroupRepository;
 }