Example #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 ClientController(KokazContext context, IMapper mapper, Logging logging, IClientCashedService clientCashedService) : base(context, mapper, logging)
 {
     _clientCashedService = clientCashedService;
 }