Example #1
0
 public Task <List <Child> > GetAllUserChildrenAsync()
 {
     return(ReadOperations.GetAllWithChildrenAsync <Child>(_asyncConnection));
 }
Example #2
0
 public Task <List <Milestone> > GetAllMilestonesAsync()
 {
     return(ReadOperations.GetAllWithChildrenAsync <Milestone>(_asyncConnection));
 }
Example #3
0
        private async Task UpdateDebtsAsync()
        {
            var debts = await ReadOperations.GetAllWithChildrenAsync <Debt>(_databaseConnection.Database);

            Content = new ObservableCollection <Debt>(debts);
        }
 public Task <List <Vaccine> > GetAllVaccinesAsync()
 {
     return(ReadOperations.GetAllWithChildrenAsync <Vaccine>(_asyncConnection));
 }