public AllReceiptCommentsViewModel GetCommentsById(int id)
        {
            var receipt = receiptManager.GetByIdWithComments(id);

            return(new AllReceiptCommentsViewModel
            {
                Comments = receipt.Comments
            });
        }