Exemple #1
0
 public PushNotificationsService(IPushTokenRepository pushTokenRepository, IScheduleRepository scheduleRepository,
                                 IPerfomanceRepository perfomanceRepository, IMemoryCache memoryCache)
 {
     this.pushTokenRepository  = pushTokenRepository;
     this.scheduleRepository   = scheduleRepository;
     this.perfomanceRepository = perfomanceRepository;
     this.memoryCache          = memoryCache;
 }
Exemple #2
0
 public PostersService(
     ITheaterScheduleUnitOfWork theaterScheduleUnitOfWork,
     IPerfomanceRepository perfomanceRepository,
     IImageService imageService,
     IMemoryCache memoryCache)
 {
     this.theaterScheduleUnitOfWork = theaterScheduleUnitOfWork;
     this.perfomanceRepository      = perfomanceRepository;
     this.imageService = imageService;
     this.memoryCache  = memoryCache;
 }
 public WishlistService(
     ITheaterScheduleUnitOfWork theaterScheduleUnitOfWork,
     IWishlistRepository WishlistRepository,
     IAccountRepository accountRepository,
     IMemoryCache memoryCache,
     IPerfomanceRepository perfomanceRepository)
 {
     this.theaterScheduleUnitOfWork = theaterScheduleUnitOfWork;
     this.WishlistRepository        = WishlistRepository;
     this.accountRepository         = accountRepository;
     this.memoryCache          = memoryCache;
     this.perfomanceRepository = perfomanceRepository;
 }