public CMSService(ICMSMapper mapper, ICacheManager cache)
 {
     _mapper = mapper;
     _cache  = cache;
 }
 public CMSService(ISquidexRepo repo, ICMSMapper mapper, ICacheProvider cache)
 {
     _repo   = repo;
     _mapper = mapper;
     _cache  = cache;
 }
Example #3
0
 public CMSService(ISquidexRepo repo, ICMSMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }