Dienstplaner, Abwesenheiten, Drucken

This commit is contained in:
rene
2020-09-30 10:00:31 +02:00
parent 6ac29c8bed
commit 98363ea890
70 changed files with 5184 additions and 947 deletions

View File

@@ -459,10 +459,10 @@ namespace BeWo.ViewModel
r => pCallBack(new BudgetListVM(r.ToList())));
}
public static void CreateDienstListVMAsync(Action<DienstListVM> pCallBack)
public static void CreateDienstListVMAsync(Action<DienstInfoListVM> pCallBack)
{
ServiceFacade.DoOperationsServiceAsync(s => s.GetAllDienste(),
r => pCallBack(new DienstListVM(r.ToList())));
r => pCallBack(new DienstInfoListVM(r.ToList())));
}
public static void CreateTextModuleListVMAsync(Action<TextModuleListVM> pCallBack, bool pIsInAdministrationView = false, bool pIsInTextModuleEditor = false)