public CSettingsGetController(KokazContext context, IMapper mapper, Logging logging, ICountryCashedService countryCashedService, IRegionCashedService regionCashedService, IIndexService <MoenyPlaced> moneyPlacedIndexService, IIndexService <OrderPlaced> orderPlacedIndexService) : base(context, mapper, logging)
 {
     _countryCashedService    = countryCashedService;
     _regionCashedService     = regionCashedService;
     _orderPlacedIndexService = orderPlacedIndexService;
     _moneyPlacedIndexService = moneyPlacedIndexService;
 }
Exemple #2
0
 public CountryController(KokazContext context, IMapper mapper, Logging logging, ICountryCashedService countryCashedService, IRegionCashedService regionCashedService, IUserCashedService userCashedService, IClientCashedService clientCashedService) : base(context, mapper, logging)
 {
     _countryCashedService = countryCashedService;
     _regionCashedService  = regionCashedService;
     _userCashedService    = userCashedService;
     _clientCashedService  = clientCashedService;
 }
Exemple #3
0
 public HomeController(KokazContext context, IMapper mapper, Logging logging, ICountryCashedService countryCashedService) : base(context, mapper, logging)
 {
     _countryCashedService = countryCashedService;
 }
Exemple #4
0
 public GroupController(IGroupService groupService, KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
     _groupService = groupService;
 }
Exemple #5
0
 public IncomeController(KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
 }
 public AgentOrderController(KokazContext context, IMapper mapper, Logging logging, NotificationHub notificationHub, IIndexService <OrderPlaced> indexService) : base(context, mapper, logging)
 {
     _notificationHub = notificationHub;
     _indexService    = indexService;
 }
Exemple #7
0
 public AbstractAgentController(KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
 }
Exemple #8
0
 public EmployeeAuthController(KokazContext context, IMapper mapper, Logging logging, ITreasuryService treasuryService) : base(context, mapper, logging)
 {
     _treasuryService = treasuryService;
 }
 public UnitOfWork(KokazContext kokazContext)
 {
     _kokazContext = kokazContext;
 }
Exemple #10
0
 public IncomeTypeController(IIncomeTypeSerive incomeTypeSerive, KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
     _incomeTypeSerive = incomeTypeSerive;
 }
Exemple #11
0
 public Repository(KokazContext kokazContext)
 {
     this._kokazContext = kokazContext;
     Query = _kokazContext.Set <T>().AsQueryable();
 }
 public ClientAuthController(KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
 }
 public AbstractEmployeePolicyController(KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
 }
 public IndexRepository(KokazContext kokazContext) : base(kokazContext)
 {
 }
 public ClientController(KokazContext context, IMapper mapper, Logging logging, IClientCashedService clientCashedService) : base(context, mapper, logging)
 {
     _clientCashedService = clientCashedService;
 }
Exemple #16
0
 public OrderTypeController(KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
 }
 public PaymentWayController(KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
 }
Exemple #18
0
 public EditRequestController(KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
 }
 public StatisticsController(KokazContext context, IMapper mapper, Logging logging, NotificationHub notificationHub) : base(context, mapper, logging)
 {
     this._notificationHub = notificationHub;
 }
 public AbstractController(KokazContext context, IMapper mapper, Logging logging)
 {
     _context = context;
     _mapper  = mapper;
     _logging = logging;
 }
Exemple #21
0
 public CPaymentRequestController(KokazContext context, IMapper mapper, Logging logging, NotificationHub notificationHub) : base(context, mapper, logging)
 {
     this._notificationHub = notificationHub;
 }
 public MarketController(KokazContext context, IMapper mapper, IWebHostEnvironment env, Logging logging) : base(context, mapper, logging)
 {
     this.env = env;
 }
 public CPointController(KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
 }
Exemple #24
0
 public COrderController(KokazContext context, IMapper mapper, Logging logging, NotificationHub notificationHub) : base(context, mapper, logging)
 {
     _notificationHub = notificationHub;
 }
 public OutComeTypeController(IOutcomeTypeService outcomeTypeService, KokazContext context, IMapper mapper, Logging logging) : base(context, mapper, logging)
 {
     _outcomeTypeService = outcomeTypeService;
 }
 public UserController(KokazContext context, IMapper mapper, Logging logging, IUserCashedService userCashedService, ICountryCashedService countryCashedService) : base(context, mapper, logging)
 {
     _userCashedService    = userCashedService;
     _countryCashedService = countryCashedService;
 }