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

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