parent
a37283cabd
commit
cfe11f537b
@ -1,9 +1,23 @@
|
|||||||
|
using LivreLand.ViewModel;
|
||||||
|
|
||||||
namespace LivreLand.View;
|
namespace LivreLand.View;
|
||||||
|
|
||||||
public partial class DetailsLivreView : ContentPage
|
public partial class DetailsLivreView : ContentPage
|
||||||
{
|
{
|
||||||
public DetailsLivreView()
|
#region Properties
|
||||||
|
|
||||||
|
public DetailsLivreVM DetailsLivreVM { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructor
|
||||||
|
|
||||||
|
public DetailsLivreView(DetailsLivreVM detailsLivreVM)
|
||||||
{
|
{
|
||||||
|
DetailsLivreVM = detailsLivreVM;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
BindingContext = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
@ -1,9 +1,34 @@
|
|||||||
|
using LivreLand.ViewModel;
|
||||||
|
|
||||||
namespace LivreLand.View;
|
namespace LivreLand.View;
|
||||||
|
|
||||||
public partial class FiltrageAuteurView : ContentPage
|
public partial class FiltrageAuteurView : ContentPage
|
||||||
{
|
{
|
||||||
public FiltrageAuteurView()
|
#region Properties
|
||||||
|
|
||||||
|
public FiltrageAuteurVM FiltrageAuteurVM { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructor
|
||||||
|
|
||||||
|
public FiltrageAuteurView(FiltrageAuteurVM filtrageAuteurVM)
|
||||||
{
|
{
|
||||||
|
FiltrageAuteurVM = filtrageAuteurVM;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
BindingContext = this;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Methods
|
||||||
|
|
||||||
|
protected override void OnAppearing()
|
||||||
|
{
|
||||||
|
base.OnAppearing();
|
||||||
|
|
||||||
|
FiltrageAuteurVM.Manager.GetAllAuthorsCommand.Execute(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
Loading…
Reference in new issue