public ActionResult <List <ContractEventWithCareerInfo> > GetRecords()
        {
            _telemetry.TrackEvent("CareerLogsController-GetRecords");

            List <ContractEventWithCareerInfo> events = _careerLogService.GetRecords();

            return(events);
        }
Esempio n. 2
0
        public ActionResult <List <ContractRecord> > GetRecords(ODataQueryOptions <CareerLog> queryOptions)
        {
            List <ContractRecord> events = _careerLogService.GetRecords(queryOptions);

            return(events);
        }