Exemplo n.º 1
0
 public LocalizationService(WebMvcContext context, CacheService cacheService, LoggingService loggingService, SettingsService settingsService)
 {
     _context         = context as WebMvcContext;
     _cacheService    = cacheService;
     _settingsService = settingsService;
     _loggingService  = loggingService;
 }
Exemplo n.º 2
0
 public MembershipService(LoggingService loggingService, WebMvcContext context, CacheService cacheService, LocalizationService localizationService)
 {
     _cacheService        = cacheService;
     _context             = context as WebMvcContext;
     _localizationService = localizationService;
     _loggingService      = loggingService;
 }
Exemplo n.º 3
0
 public SettingsService(WebMvcContext context, CacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Exemplo n.º 4
0
 public PostSevice(WebMvcContext context, CacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Exemplo n.º 5
0
 public TypeRoomSevice(IWebMvcContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as WebMvcContext;
 }
Exemplo 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;
 }
Exemplo n.º 9
0
        public UnitOfWork(IWebMvcContext _context)
        {
            context = _context as WebMvcContext;

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