public Invoice GetById(int id)
        {
            var invoice = _context.GetInvoice(id);

            return(invoice);
        }