public SrvProductListingV1(IDapperProductRepository _repository,
                            IDapperAdminRepository _adminRepository,
                            IMemoryCache cache)
 {
     repository      = _repository;
     adminRepository = _adminRepository;
     _cache          = cache;
 }
Example #2
0
 public SrvBrandGetV1(IDapperAdminRepository _repository, IMemoryCache cache)
 {
     repository = _repository;
     _cache     = cache;
 }
 public SrvBrandListingV1(IDapperAdminRepository _adminRepository, IMemoryCache cache)
 {
     adminRepository = _adminRepository;
     _cache          = cache;
 }