async void LoadData()
 {
     if (Monsters == null)
     {
         Monsters = await MHDatabaseHelper.GetAllLargeMonsters();
     }
     if (SmallMonsters == null)
     {
         SmallMonsters = await MHDatabaseHelper.GetAllSmallMonsters();
     }
 }