/// <summary> /// Конструктор. /// </summary> public Extinguisher() { DateProduction = DateTime.Now; DateRecharge = DateProduction.AddYears(5); IsHose = true; IsSticker = true; Point = new ScalePoint(); }
/// <summary> /// Конструктор. /// </summary> public Hose() { DateProduction = DateTime.Now; DateRolling = DateProduction.AddYears(1); Point = new ScalePoint(); }