Exemplo n.º 1
0
        public PersonDetailForm(Form parent, Type type, Person person)
        {
            this.parent = parent;
            this.type = type;
            this.person = person;
            InitializeComponent();
            InitInputs();

            parent.Hide();
        }
Exemplo n.º 2
0
 public ExPersonAlreadyExists(Person person, Exception inner)
     : base(person.Fullname + " already Exists.", inner)
 {
 }
Exemplo n.º 3
0
 public ExPersonDoNotExists(Person person, Exception inner)
     : base(person.Fullname + " does not exist.", inner)
 {
 }
Exemplo n.º 4
0
 public ExPersonAlreadyExists(Person person)
     : base(person.Fullname + " already Exists.")
 {
 }
Exemplo n.º 5
0
 public ExPersonDoNotExists(Person person)
     : base(person.Fullname + " does not exist.")
 {
 }