public ActionResult <List <ContractEventWithCareerInfo> > GetRecords() { _telemetry.TrackEvent("CareerLogsController-GetRecords"); List <ContractEventWithCareerInfo> events = _careerLogService.GetRecords(); return(events); }
public ActionResult <List <ContractRecord> > GetRecords(ODataQueryOptions <CareerLog> queryOptions) { List <ContractRecord> events = _careerLogService.GetRecords(queryOptions); return(events); }