Files
BeWoPlaner/BeWoPlanerMobil/Util/FormCollectionConstants.cs
Lyndon 9ffcf8ed62 Views in Partials aufgeteilt
Intervallfinder hinzugefügt
2022-02-10 11:06:03 +01:00

61 lines
3.2 KiB
C#

namespace BeWoPlanerMobil.Util
{
public class FormCollectionConstants
{
// Zeiterfassung
public static string ShowOnlyOwnSupportConceptsKey => "ShowOnlyOwnSupportConcepts";
public static string ShowExpiredSupportConceptsKey => "ShowExpiredSupportConcepts";
public static string DateKey => "Datum";
public static string Dokumentation1Key => "Dokumentation1";
public static string Dokumentation2Key => "Dokumentation2";
public static string Dokumentation3Key => "Dokumentation3";
public static string Dokumentation4Key => "Dokumentation4";
public static string Dokumentation5Key => "Dokumentation5";
public static string Dokumentation6Key => "Dokumentation6";
public static string DistanceKey => "Distanz";
public static string StartKey => "Start";
public static string EndKey => "Ende";
public static string EndDateKey => "Enddatum";
public static string DurationKey => "Dauer";
public static string HiddenInputKey => "versteckt";
public static string ServiceDescriptionKey => "ServiceDescription";
public static string CostBearer2SupportConceptOidKey => "CostBearer2SupportConceptOid";
public static string ServiceRecordOidHolderKey => "serviceRecordOidHolder";
public static string RecordsKey => "Records";
public static string ServiceRecordOidHolder2Key => "service-record-oid-holder";
public static string IsInGroupBookingModeKey => "IsInGroupBookingMode";
// Kalender
public static string AppointmentStartDateKey => "StartDate";
public static string AppointmentStartTimeKey => "StartTime";
public static string AppointmentEndDateKey => "EndDate";
public static string AppointmentEndTimeKey => "EndTime";
public static string AppointmentSubjectKey => "Subject";
public static string AppointmentLocationKey => "Location";
public static string AppointmentNoticeKey => "Notice";
public static string AppointmentSchedulerDateKey => "SchedulerDate";
public static string AppointmentSchedulerOidHolderKey => "scheduler-oid-holder";
public static string AppointmentIsPrivate => "IsPrivate";
public static string AppointmentIsAllDay => "IsAllDay";
// Auswertung
public static string SelectedCustomerOidKey => "SelectedCustomerOid";
public static string SelectedMonthKey => "SelectedMonth";
public static string SelectedYearKey => "SelectedYear";
public static string SelectedTeamOidKey => "SelectedTeamOid";
public static string ShowSignatureSuggestionPopup => "ShowSignatureSuggestionPopup";
public static string ServiceRecordOidForSignature => "ServiceRecordOidForSignature";
}
public class ModelSessionConstants
{
public static string ReportModelKey => "ReportModel";
public static string CustomerModelKey => "CustomerModelModel";
public static string SchedulerModelKey => "SchedulerModel";
public static string MainModelKey => "MainModel";
public static string DevelopmentModelKey => "DevelopmentModel";
public static string DevExpressReportModelKey => "DevExpressReportModel";
}
}