use sample_shoe_co::*;
fn main() {
let mut shoe_air_max = Shoe::new("AirMax".to_string(), "SKU123".to_string(), 50);
shoe_air_max.update_sku("SKU1234".to_string());
shoe_air_max.restock(10);
shoe_air_max.sell(20);
println!("{}", shoe_air_max.display());
println!(
"Min Quantity if Restocked: {}",
shoe_air_max.inventory_min_quantity_if_restocked()
);
shoe_air_max.inventory_min_restock();
println!("{:#?}", shoe_air_max);
let _sale_manager = Employee::Manager { name: "Bill".to_string(), id: 1, title: "Sales Manager".to_string() };
let _store_manager = Manager { name: "Liz".to_string(), id: 2, title: "Store Manager".to_string() };
let _sales_associate = Associate { name: "John".to_string(), id: 3, shift: 3 };
}