Exemple #1
0
 public IEnumerable <Pet> ConvertInput(IMyThing <IGenericThing> input)
 {
     return(input.GetSub("api-key-123").Select(x => new Pet {
         AnimalName = x.Value
     }));
 }
Exemple #2
0
 public MyWrapper()
 {
     _myThing = new MyThing();
 }