2025-01-28 13:50:12 +01:00
|
|
|
|
using MauiApp1.Model;
|
|
|
|
|
using MauiApp1.Views;
|
|
|
|
|
|
|
|
|
|
namespace MauiApp1;
|
2025-01-16 17:48:14 +01:00
|
|
|
|
|
|
|
|
|
public partial class MainPage : ContentPage
|
|
|
|
|
{
|
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
|
|
public MainPage()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-28 13:50:12 +01:00
|
|
|
|
private async void OnFournisseursClicked(object? sender, EventArgs e)
|
2025-01-16 17:48:14 +01:00
|
|
|
|
{
|
2025-01-28 13:50:12 +01:00
|
|
|
|
await Navigation.PushAsync(new FournisseurPage());
|
2025-01-16 17:48:14 +01:00
|
|
|
|
}
|
|
|
|
|
}
|