├── Extensions.cs ├── Order.cs ├── Program.cs ├── README.md ├── Transporters ├── AirwayTransporter.cs ├── HighwayTransporter.cs ├── SeawayTransporter.cs └── Transporter.cs └── order-management.csproj /Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/Extensions.cs -------------------------------------------------------------------------------- /Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/Order.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/README.md -------------------------------------------------------------------------------- /Transporters/AirwayTransporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/Transporters/AirwayTransporter.cs -------------------------------------------------------------------------------- /Transporters/HighwayTransporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/Transporters/HighwayTransporter.cs -------------------------------------------------------------------------------- /Transporters/SeawayTransporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/Transporters/SeawayTransporter.cs -------------------------------------------------------------------------------- /Transporters/Transporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/Transporters/Transporter.cs -------------------------------------------------------------------------------- /order-management.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edisnezir/factory-pattern-order/HEAD/order-management.csproj --------------------------------------------------------------------------------