Beispiel #1
0
 public LocalizationService(IWebMvcContext context, ICacheService cacheService, ILoggingService loggingService, ISettingsService settingsService)
 {
     _context         = context as WebMvcContext;
     _cacheService    = cacheService;
     _settingsService = settingsService;
     _loggingService  = loggingService;
 }
Beispiel #2
0
 public ShoppingCartProductService(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Beispiel #3
0
 public MembershipService(IWebMvcContext context, ICacheService cacheService, ILocalizationService localizationService)
 {
     _cacheService        = cacheService;
     _context             = context as WebMvcContext;
     _localizationService = localizationService;
 }
Beispiel #4
0
 public ContactService(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Beispiel #5
0
 public TypeRoomSevice(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
 public EmployeesRoleService(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Beispiel #7
0
 public SettingsService(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Beispiel #8
0
 public BookingSevice(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Beispiel #9
0
        public UnitOfWork(IWebMvcContext _context)
        {
            context = _context as WebMvcContext;

            transaction = context.BeginTransaction();
        }
Beispiel #10
0
 public ProductPostSevice(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Beispiel #11
0
 public UnitOfWorkManager(IWebMvcContext _context)
 {
     context = _context;
 }
Beispiel #12
0
 public PermissionService(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }