Exemplo n.º 1
0
        public Livery Livery(int id)
        {
            if (LiveryList == null)
            {
                return(null);
            }

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