Exemplo n.º 1
0
        public static Person DoSelection(Form parent, Family f)
        {
            PersonSelector ps = new PersonSelector(f);

            ps.ShowDialog(parent);
            return(ps.result);
        }
Exemplo n.º 2
0
        public static Person DoSelection(Form parent, Gender g)
        {
            PersonSelector ps = new PersonSelector(g);

            ps.ShowDialog(parent);
            return(ps.result);
        }
Exemplo n.º 3
0
        public static Person DoSelection(System.Windows.Forms.Control parent)
        {
            PersonSelector ps = new PersonSelector();

            ps.ShowDialog(parent);
            return(ps.result);
        }