public Invoice(Delaney.Services.Data.Core.Domain.Invoice core)
 {
     _core = core ??
             throw new NullReferenceException("The Delaney.Services.Data.Core.Domain.Invoice cannot be null");
 }
 // This constructor is used by HTTP posts
 public Invoice()
 {
     _core = new Delaney.Services.Data.Core.Domain.Invoice();
 }