public Employee(PlaceTrading job, string name, string birthday, string address, string position, string mobilePhone = null, string homePhone = null) { Job = job; Name = name; Birthday = birthday; Address = address; Position = position; MobilePhone = mobilePhone; HomePhone = homePhone; Employees.Add(this); }
public ProductInPlaceTrading(PlaceTrading placeTrading, Product product) { PlaceTrading = placeTrading; Product = product; ProductInPlacesTrading.Add(this); }