using ProjectAirplaneWithRadar.Drawnings; namespace ProjectAirplaneWithRadar.CollectionGenericObjects { public class PlaneSharingService : AbstractCompany { public PlaneSharingService(int picWidth, int picHeight, ICollectionGenericObjects collection) : base(picWidth, picHeight, collection) { } protected override void DrawBackgound(Graphics g) { throw new NotImplementedException(); } protected override void SetObjectsPosition() { throw new NotImplementedException(); } } }