public FoodTruckTag(FoodTruck foodTruck, Tag tag)
     : base(ObjectState.NEW)
 {
     //this.foodTruckTagId = default(int);
     this.FoodTruck   = foodTruck;
     this.FoodTruckId = this.FoodTruck.FoodTruckId;
     this.Tag         = tag;
     this.TagId       = this.Tag.TagId;
 }
 protected internal FoodTruckTag(int id, FoodTruck foodTruck, Tag tag)
     : base(ObjectState.UNCHANGED)
 {
     this.foodTruckTagId = id;
     this.FoodTruck      = foodTruck;
     this.FoodTruckId    = this.FoodTruck.FoodTruckId;
     this.Tag            = tag;
     this.TagId          = this.Tag.TagId;
 }