Files
BeWoPlaner/BeWoPlanerMobil/Util/FormCollectionConstants.cs
Lyndon Jetten 63d9844e3f BeWoPlanerMobil:
Beim Bearbeiten von Zeiterfassungseinträgen ohne Zeitangaben wird das Datum nicht mehr auf 0 Uhr gesetzt
2020-09-21 11:57:10 +02:00

55 lines
2.8 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";
public static string SignatureOidHolderKey => "signatureOidHolder";
// 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";
// Auswertung
public static string SelectedCustomerOidKey => "SelectedCustomerOid";
public static string SelectedMonthKey => "SelectedMonth";
public static string SelectedYearKey => "SelectedYear";
}
public class ModelSessionConstants
{
public static string ReportModelKey => "ReportModel";
public static string CustomerModelKey => "CustomerModelModel";
public static string SchedulerModelKey => "SchedulerModel";
public static string MainModelKey => "MainModel";
}
}