Beispiel #1
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;
 }
 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;
 }