public override System.Web.Mvc.PartialViewResult BankInformation(EmployeePayrollInformationViewModel employeePayrollInformation) {
     var callInfo = new T4MVC_PartialViewResult(Area, Name, ActionNames.BankInformation);
     callInfo.RouteValueDictionary.Add("employeePayrollInformation", employeePayrollInformation);
     return callInfo;
 }
 public virtual PartialViewResult BankInformation(int employeeId)
 {
     var employeePayrollInformation = new EmployeePayrollInformationViewModel();
     return PartialView(employeePayrollInformation);
 }
 public virtual PartialViewResult BankInformation(EmployeePayrollInformationViewModel employeePayrollInformation)
 {
     new CommandBuilder().BuildCommand<AddEmployeePayrollCommand>().Execute(employeePayrollInformation);
     return PartialView();
 }
 public void Execute(EmployeePayrollInformationViewModel employeePayrollInformation)
 {
 }