19 lines
430 B
C#
19 lines
430 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using autosos_maui.ViewModels;
|
|||
|
|
|||
|
namespace autosos_maui.Views;
|
|||
|
|
|||
|
public partial class HomeView : ContentPage
|
|||
|
{
|
|||
|
private readonly HomeViewModel _homeViewModel;
|
|||
|
|
|||
|
public HomeView(HomeViewModel homeViewModel)
|
|||
|
{
|
|||
|
BindingContext = _homeViewModel = homeViewModel;
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|