示例#1
0
        public void Adapt()
        {
            ICollection <string> adapter = collection.Adapt <int, string>();

            Assert.NotNull(adapter);
        }
 public static IList <Person> Map(ICollection <PersonDto> items) =>
 items.Adapt <ICollection <PersonDto>, IList <Person> >();