public UserController()
 //Crea un UserController y carga los usuarios
 {
     this.userPersistor = new TxtPersistor(Constants.Paths.UserProgress);
     this.userFormatter = new TxtUserFormatter(this.userPersistor);
     this.currentUsers  = userFormatter.DeSerialize();
 }