public async Task <ActionResult> Delete(int id)
        {
            await _readerService.DeleteByIdAsync(id);

            return(Ok());
        }