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 UserController(KokazContext context, IMapper mapper, Logging logging, IUserCashedService userCashedService, ICountryCashedService countryCashedService) : base(context, mapper, logging)
 {
     _userCashedService    = userCashedService;
     _countryCashedService = countryCashedService;
 }