NFC azonosítás is beállítva

This commit is contained in:
2025-04-06 14:41:36 +02:00
parent 71a5850d65
commit dc3e6e2f7b
8 changed files with 157 additions and 17 deletions
@@ -35,7 +35,7 @@ public partial class UsersPage : ContentPage
{
IsRefreshing = true;
//await _syncService.SyncDatas();
UsersList.ItemsSource = await _userService.GetAllUsers();
//UsersList.ItemsSource = await _userService.GetAllUserAsync().Result.Data;
IsRefreshing = false;
OnPropertyChanged(nameof(IsRefreshing));
}
@@ -51,8 +51,8 @@ public partial class UsersPage : ContentPage
}
if (UserDTO != null)
{
UserDTO.Code = UserCode;
await _baseStockService.UpdateUser(UserDTO);
//UserDTO.Code = UserCode;
//await _baseStockService.UpdateUser(UserDTO);
await LoadUsers();
}
}