public async Task <HashSet <int> > GetPitchIds()
        {
            _auditor.RecordAction("Test");

            var ids = await GetQueryablePitches().Select(c => c.Id).OrderBy(c => c).ToListAsync();

            return(ids.ToHashSet());
        }
예제 #2
0
 public void RecordAction(string message)
 {
     _auditor.RecordAction(message);
 }