Files
BeWoPlaner/BeWoPlanerMobil/Util/FormCollectionConstants.cs
Lyndon Jetten e92a8daba1 Textbausteine wird IsActive zugewiesen beim Insert
Mitarbeiteranzahl ist jetzt korrekt bei Gruppenbuchungen im Mobilklienten
Textbausteine-Button in der Mobilversion wird nicht angezeigt, wenn es keine Textbausteine gibt
Der Klienten-Kommentar wird in der Mobilversion angezeigt
2020-11-11 14:21:29 +01:00

58 lines
3.0 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 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";
}
}