Exemplo n.º 1
0
 public AddType(ServiceImplementationClient service)
 {
     _service = service;
     InitializeComponent();
 }
Exemplo n.º 2
0
 public PersonControl()
 {
     InitializeComponent();
     service = new ServiceImplementationClient();
 }
Exemplo n.º 3
0
        public PhotoControl()
        {
            InitializeComponent();

            _repository = new ServiceImplementationClient();
        }
Exemplo n.º 4
0
 public EditType(ServiceImplementationClient repository, ServiceReference1.Type type)
 {
     _repository = repository;
     _type       = type;
     InitializeComponent();
 }
Exemplo n.º 5
0
 public EditPlace(ServiceImplementationClient service, Places type)
 {
     _service = service;
     _type    = type;
     InitializeComponent();
 }
Exemplo n.º 6
0
 public EditPerson(ServiceImplementationClient service, ServiceReference1.Person person)
 {
     _service = service;
     _person  = person;
     InitializeComponent();
 }