public ActionResult Index(IndexModel model)
 {
     model.FeedbackMessage = "";
     var payslipService = new PayslipService();
     model.FeedbackMessage = payslipService.GenerateCsv();
     return View(model);
 }
 public ActionResult Index()
 {
     var model = new IndexModel();
     return View(model);
 }