Beispiel #1
0
        public async Task <IActionResult> Get(Int64 id)
        {
            LedgerEntry result = await _repo.GetEntry(id);

            return(Ok(result));
        }