public Parcel()
 {
     this.weight = 0.0f;
     this.parcelNumber = 1;
     this.totalParcels = 1;
     this.costEstimate = 0.0d;
     this.parcelID = 0;
     this.articleID = string.Empty;
     this.size = new Dimensions();
     this.status = Enums.ParcelStatus.PENDING;
 }
 public Parcel(float weight, int parcelNumber, double costEstimate)
 {
     this.weight = weight;
     this.parcelNumber = parcelNumber;
     this.totalParcels = 0;
     this.costEstimate = costEstimate;
     this.parcelID = 0;
     this.articleID = string.Empty;
     this.size = new Dimensions();
     this.status = Enums.ParcelStatus.PENDING;
 }