Beispiel #1
0
 public PersonController(StringAppTableDataService <Person, PersonDTO> tableDataService) : base(tableDataService)
 {
     this.tableDataService = tableDataService;
 }
Beispiel #2
0
 public PersonController(StringAppTableDataService <Person, PersonDTO> tableDataService, IMapper mapper) : base(tableDataService)
 {
     this.tableDataService = tableDataService;
     this.mapper           = mapper;
 }