using LocalDataStorageWithSQLite.Repositories; namespace LocalDataStorageWithSQLite { public partial class App : Application { public static PersonRepository PersonRepo { get; private set; } public App(PersonRepository repo) { InitializeComponent(); MainPage = new AppShell(); PersonRepo = repo; } } }