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