// GET: Rates
        public async Task <ActionResult> Index()
        {
            await ratesRepository.LoadData();

            return(View(await this.ratesRepository.GetAll()));
        }