// GET: api/InboundFax
 public IEnumerable<InboundFaxDocument> Get()
 {
     FaxRepository faxData = new FaxRepository();
     return faxData.GetInboundFaxList();
 }