public async Task <IActionResult> Index()
        {
            var proposals = await proposalService.GetAllAsync();

            return(View(proposals));
        }