Medikamentenlistenansicht ausgeblendet, wenn man nicht im Debug-Modus ist
5- und 7-tägige Ansicht implementiert

Fat-Client:
Das Ändern von Zeitelementen von Serienterminen ist nun möglich und es werden dabei auch keine Ausnahmen gelöscht.
This commit is contained in:
Lyndon Jetten
2021-11-08 20:24:26 +01:00
parent f81b5e2c62
commit 9783999104
355 changed files with 5885 additions and 2629 deletions

View File

@@ -13,14 +13,14 @@ namespace BeWoPlanerMobil.Controllers
{
public abstract class AbstractBaseController : Controller
{
protected readonly ICustomerService CustomerService = new MobileSessionFacade().CustomerService;
protected readonly ICustomerService CustomerService = new MobileSessionFacade().CustomerService;
protected readonly IOperationsService OperationsService = new MobileSessionFacade().OperationsService;
protected readonly IEmployeeService EmployeeService = new MobileSessionFacade().EmployeeService;
protected readonly IValueListService ValueListService = new MobileSessionFacade().ValueListService;
protected readonly IResourceService KalenderService = new MobileSessionFacade().ResourceService;
protected readonly IUserService UserService = new MobileSessionFacade().UserService;
protected readonly IReportService ReportService = new MobileSessionFacade().ReportService;
protected readonly IDownloadService DownloadService = new MobileSessionFacade().DownloadService;
protected readonly IEmployeeService EmployeeService = new MobileSessionFacade().EmployeeService;
protected readonly IValueListService ValueListService = new MobileSessionFacade().ValueListService;
protected readonly IResourceService KalenderService = new MobileSessionFacade().ResourceService;
protected readonly IUserService UserService = new MobileSessionFacade().UserService;
protected readonly IDownloadService DownloadService = new MobileSessionFacade().DownloadService;
protected readonly IReportService ReportService = new MobileSessionFacade().ReportService;
protected const string _LeerzeichenFuerGetMethoden = " ";