Esempio n. 1
0
 public LocalizationService(WebMvcContext context, CacheService cacheService, LoggingService loggingService, SettingsService settingsService)
 {
     _context         = context as WebMvcContext;
     _cacheService    = cacheService;
     _settingsService = settingsService;
     _loggingService  = loggingService;
 }
Esempio n. 2
0
 public MembershipService(LoggingService loggingService, WebMvcContext context, CacheService cacheService, LocalizationService localizationService)
 {
     _cacheService        = cacheService;
     _context             = context as WebMvcContext;
     _localizationService = localizationService;
     _loggingService      = loggingService;
 }
Esempio n. 3
0
 public SettingsService(WebMvcContext context, CacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Esempio n. 4
0
 public PostSevice(WebMvcContext context, CacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Esempio n. 5
0
 public TypeRoomSevice(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Esempio n. 6
0
 public CategoryService(WebMvcContext context, CacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
 public CategoriesController(WebMvcContext context)
 {
     _context = context;
 }
 public DepartamentosController(WebMvcContext context)
 {
     _context = context;
 }
Esempio n. 9
0
        public UnitOfWork(IWebMvcContext _context)
        {
            context = _context as WebMvcContext;

            transaction = context.BeginTransaction();
        }
Esempio n. 10
0
 public ShoppingCartService(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Esempio n. 11
0
 public ProductsController(WebMvcContext context)
 {
     _context = context;
 }
Esempio n. 12
0
 public EmployeesService(WebMvcContext context, CacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Esempio n. 13
0
 public ProductPostSevice(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
 //DI
 public DepartmentService(WebMvcContext context)
 {
     Context = context;
 }
Esempio n. 15
0
 public ContactService(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Esempio n. 16
0
 public BookingSevice(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Esempio n. 17
0
 public MenuService(WebMvcContext context, CacheService cacheService, LocalizationService localizationService)
 {
     _cacheService        = cacheService;
     _context             = context as WebMvcContext;
     _localizationService = localizationService;
 }
 //DI
 public SellerService(WebMvcContext context)
 {
     Context = context;
 }
Esempio n. 19
0
 public MembershipService(IWebMvcContext context, ICacheService cacheService, ILocalizationService localizationService)
 {
     _cacheService        = cacheService;
     _context             = context as WebMvcContext;
     _localizationService = localizationService;
 }
Esempio n. 20
0
 public DepartamentoService(WebMvcContext context)
 {
     _context = context;
 }
Esempio n. 21
0
 public ShoppingCartProductService(WebMvcContext context, CacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Esempio n. 22
0
 public EmployeesRoleService(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
 //DI
 public SalesRecordService(WebMvcContext context)
 {
     Context = context;
 }
Esempio n. 24
0
 public PermissionService(WebMvcContext context, CacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }