public ShippingPricesHelpers(ApplicationDbContext dbContext)
 {
     context       = dbContext;
     countryHelper = new CountryHelper(context);
 }
 public ShippingAddressHelper(ApplicationDbContext context)
 {
     _context      = context;
     countryHelper = new CountryHelper(_context);
 }