Example #1
0
        public AddUser(string ID)
        {
            InitializeComponent();

            this.currentID = ID;
            this.user      = new AddUserDAL();
            this.InitializeData();
        }
Example #2
0
        private async void Init()
        {
            this.checkin_type_combox.SelectedIndex = 0;
            user = new AddUserDAL();
            await this.BindCheckInAddressDataMember();

            await MemberCheckInSingletonService.getAllMemberCheckInOnToday(this.getCheckInType(), this.GetCheckInLocation());

            await FaceSyncService.Instance.Run();

            this.Initialized = true;
        }