public UpdateUserTotalPointEventHandler(IUserAssetRepository userAssetRepository)
 {
     _userAssetRepository = userAssetRepository;
 }
 public UpdateUserTotalCommentBlogCountEventHandler(IUserAssetRepository userAssetRepository,
                                                    IRepository <BlogComment> blogCommentRepository)
 {
     _userAssetRepository   = userAssetRepository;
     _blogCommentRepository = blogCommentRepository;
 }
Example #3
0
 public AssetUIDsValidator(IUserAssetRepository userAssetRepository, ILoggingService loggingService) : base(loggingService)
 {
     this._userAssetRepository = userAssetRepository;
 }
 public UpdateUserTotalCollectBlogCountEventHandler(IUserAssetRepository userAssetRepository)
 {
     _userAssetRepository = userAssetRepository;
 }
Example #5
0
 public PingValidator(ILoggingService loggingService, IDevicePingRepository devicePingRepository, IUserAssetRepository userAssetRepository) : base(loggingService)
 {
     this._devicePingRepository = devicePingRepository;
     this._userAssetRepository  = userAssetRepository;
 }