Пример #1
0
        public PersonDetailForm(Form parent, Type type, Person person)
        {
            this.parent = parent;
            this.type = type;
            this.person = person;
            InitializeComponent();
            InitInputs();

            parent.Hide();
        }
Пример #2
0
 public ExPersonAlreadyExists(Person person, Exception inner)
     : base(person.Fullname + " already Exists.", inner)
 {
 }
Пример #3
0
 public ExPersonDoNotExists(Person person, Exception inner)
     : base(person.Fullname + " does not exist.", inner)
 {
 }
Пример #4
0
 public ExPersonAlreadyExists(Person person)
     : base(person.Fullname + " already Exists.")
 {
 }
Пример #5
0
 public ExPersonDoNotExists(Person person)
     : base(person.Fullname + " does not exist.")
 {
 }