/// <summary>
 /// Create an empty container with ID, Type and Title
 /// </summary>
 /// <param name="id">Container ID</param>
 /// <param name="type">Container Type</param>
 /// <param name="title">Container title</param>
 public Container(int id, ContainerTypeOld type, string title)
 {
     ID    = id;
     Title = title;
     Type  = ConvertType.ToNew(type);
     Items = new Dictionary <int, Item>();
 }
 public Container(int id, ContainerTypeOld type, string title)
 {
     ID    = id;
     Title = title;
     Type  = ConvertType.ToNew(type);
 }