🐛 Fix some bugs
continuous-integration/drone/push Build is passing Details

pull/23/head
Antoine PEREDERII 2 years ago
parent 85713ccc74
commit c234feccb5

@ -16,7 +16,7 @@ namespace Banquale.Model
public string Categorie { get; private set; } public string Categorie { get; private set; }
private Transactions( int type, int somme, Compte compteImplique, string categorie) { public Transactions(int type, int somme, Compte compteImplique, string categorie) {
Type = type; Type = type;
Somme = somme; Somme = somme;
CompteImplique = compteImplique; CompteImplique = compteImplique;

@ -7,13 +7,8 @@ public partial class HelpPage : ContentPage
InitializeComponent(); InitializeComponent();
} }
void ContentPage_NavigatedTo(System.Object sender, Microsoft.Maui.Controls.NavigatedToEventArgs e)
{
}
public async void Send_Clicked(Object sender, EventArgs e) public async void Send_Clicked(Object sender, EventArgs e)
{ {
await Shell.Current.Navigation.PushAsync(new BalancePage()); await Shell.Current.Navigation.PushAsync(new BalancePage());
} }
} }

@ -7,10 +7,6 @@ public partial class MenuTransferPage : ContentPage
InitializeComponent(); InitializeComponent();
} }
void ContentPage_NavigatedTo(System.Object sender, Microsoft.Maui.Controls.NavigatedToEventArgs e)
{
}
public async void RIB_Clicked(Object sender, EventArgs e) public async void RIB_Clicked(Object sender, EventArgs e)
{ {
await Navigation.PushAsync(new RibPage()); await Navigation.PushAsync(new RibPage());

Loading…
Cancel
Save