//This method is called in the main controller to do the rename function.
 public void RenameFile()
 {
     //Shows the user to choose a source folder for file and check his input
     OpenFileBrowseDialog();
     //CheckUserInput uses RenameFileForm.GetRenameFileBindingModel() to get the created binding model from the form.
     CheckUserInput(RenameFileForm.GetRenameFileBindingModel());
 }