Inheritance: NotificationForm
Ejemplo n.º 1
0
        public static void ShowHouseForm(House h, string command)
        {
            if (h == null)
            {
                return;
            }
            HouseForm f = new HouseForm();

            f.house = h;

            ShowNotification(f, command);
        }
Ejemplo n.º 2
0
        public static void ShowHouseForm(House h, string command)
        {
            if (h == null) return;
            HouseForm f = new HouseForm();
            f.house = h;

            ShowNotification(f, command);
        }