public IActionResult AddPayment(AgencyPaymentViewModel model)
 {
     return(ViewComponent("AgencyPayment", new { model }));
 }
 public IViewComponentResult Invoke(AgencyPaymentViewModel model)
 {
     return(View(model));
 }