예제 #1
0
 private void Initialize()
 {
     _dataManager = new DataManager();
     lookUpEdit_User.Properties.DataSource = _dataManager.GetAllUsers();
     saleBindingSource.DataSource = new List<Sale>();
 }
예제 #2
0
파일: UsersView.cs 프로젝트: titusxp/buzzle
 private void InitializeUsersSection()
 {
     _dataManager = new DataManager();
     _allUsers = _dataManager.GetAllUsers();
     LoadUsersToTiles();
 }