예제 #1
0
 public JugadorMapper(Gateway gatW)
     : base(gatW)
 {
     bowlerMapper = new BowlerMapper(gateway);
     cricketerMapper = new CricketerMapper(gateway);
     futbolistaMapper = new FutbolistaMapper(gateway);
 }
예제 #2
0
파일: Mapper.cs 프로젝트: jmayta1984/PoEAA
 public Mapper(Gateway gateway)
 {
     this.gateway = gateway;
 }
예제 #3
0
파일: Mapper.cs 프로젝트: huang-lu/PoEAA
 public Mapper(Gateway gateway)
 {
     this.gateway = gateway;
 }
예제 #4
0
 public FutbolistaMapper(Gateway gateway)
     : base(gateway)
 {
 }
예제 #5
0
 public CricketerMapper(Gateway gateway) : base(gateway)
 {
 }
예제 #6
0
 public BowlerMapper(Gateway gateway)
     : base(gateway)
 {
 }