public UserPreferencesAppService(IMapper mapper
                                  , IUnitOfWork unitOfWork
                                  , ICacheService cacheService
                                  , IUserPreferencesDomainService userPreferencesDomainService) : base(mapper, unitOfWork, cacheService)
 {
     this.userPreferencesDomainService = userPreferencesDomainService;
 }
 public UserPreferencesAppService(IBaseAppServiceCommon baseAppServiceCommon, IUserPreferencesDomainService userPreferencesDomainService) : base(baseAppServiceCommon)
 {
     this.userPreferencesDomainService = userPreferencesDomainService;
 }