コード例 #1
0
 /// <summary>
 /// Ariel Sigo
 /// Created 2016/11/19
 /// </summary>
 /// <returns>List of trainers</returns>
 public List <Trainer> GetFullTrainerList()
 {
     try
     {
         return(TrainerAccessor.RetrieveTrainers());
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #2
0
 private void refreshActiveTrainerList()
 {
     try
     {
         _trainers = TrainerAccessor.RetrieveTrainers();
     }
     catch (Exception)
     {
         throw;
     }
 }