public CountryRepository(CountryContext context)
        {
            _context = context;

            _countries = context.Set <Country>();
        }