Exemple #1
0
        public Livery Livery(int id)
        {
            if (LiveryList == null)
            {
                return(null);
            }

            return(LiveryList.GetLivery(id));
        }
Exemple #2
0
 public bool HasLiveries()
 {
     return(LiveryList != null && LiveryList.HasLiveries());
 }
Exemple #3
0
 public bool HasLivery(int id)
 {
     return(LiveryList != null && LiveryList.HasLivery(id));
 }