public CarProduced(FactoryId id, string employeeName, string carModel, CarPart[] parts) { Id = id; EmployeeName = employeeName; CarModel = carModel; Parts = parts; }
public AssignEmployeeToFactory(FactoryId id, string employeeName) { Id = id; EmployeeName = employeeName; }
public FactoryOpened(FactoryId id) { Id = id; }
public ShipmentUnpackedInCargoBay(FactoryId id, string employeeName, InventoryShipment[] inventoryShipments) { Id = id; EmployeeName = employeeName; InventoryShipments = inventoryShipments; }
public ProduceACar(FactoryId id, string employeeName, string carModel) { Id = id; EmployeeName = employeeName; CarModel = carModel; }
public OpenFactory(FactoryId id) { Id = id; }
public UnpackAndInventoryShipmentInCargoBay(FactoryId id, string employeeName) { Id = id; EmployeeName = employeeName; }
public CurseWordUttered(FactoryId id, string theWord, string meaning) { Id = id; TheWord = theWord; Meaning = meaning; }
public ShipmentReceivedInCargoBay(FactoryId id, InventoryShipment shipment) { Id = id; Shipment = shipment; }
public ReceiveShipmentInCargoBay(FactoryId id, string shipmentName, CarPart[] carParts) { Id = id; ShipmentName = shipmentName; CarParts = carParts; }