Esempio n. 1
0
        /// <summary>
        /// Carga y configuracion de Personnels.
        /// </summary>
        /// <history>
        /// [edgrodriguez] 23/May/2016 Created
        /// </history>
        private async void LoadPersonnel()
        {
            _personnels = await BRPersonnel.GetPersonnelAccess();

            _personnels.Insert(0, new Personnel {
                peID = "ALL", peN = "ALL"
            });
            cbPersonnel.ItemsSource   = _personnels;
            cbPersonnel.SelectedIndex = 0;
        }