コード例 #1
0
ファイル: Operationsv2.cs プロジェクト: cruzzed/PayrollApp
 /// <summary>
 /// Gets all location on the database
 /// </summary>
 /// <param name="GetDisabled">True to also get disabled locations</param>
 /// <returns></returns>
 public async Task <ObservableCollection <Location> > GetLocations(bool GetDisabled)
 {
     return(await da.GetAllLocationAsync(GetDisabled));
 }