diff --git a/BeWo/Scheduler/View/NewSchedulerView.xaml.cs b/BeWo/Scheduler/View/NewSchedulerView.xaml.cs
index 243231b2f..00a5afa8d 100644
--- a/BeWo/Scheduler/View/NewSchedulerView.xaml.cs
+++ b/BeWo/Scheduler/View/NewSchedulerView.xaml.cs
@@ -2637,9 +2637,9 @@ namespace BeWo.Scheduler.View
private void btn_showEmployeeInformation_Click(object sender, RoutedEventArgs e)
{
- var cb = (Button) sender;
+ var cb = (Button)sender;
var datacontext = cb.DataContext;
- CompactEmployeeDC emp = (CompactEmployeeDC) datacontext;
+ CompactEmployeeDC emp = (CompactEmployeeDC)datacontext;
var control = new InformationView();
control.SetXaml(ServiceFacade.DoOperationsServiceSync(s => s.GetXAMLInformationStringForEmployee(emp.EmployeeOid)));
@@ -2659,9 +2659,9 @@ namespace BeWo.Scheduler.View
private void btn_showCustomerInformation_Click(object sender, RoutedEventArgs e)
{
- var cb = (Button) sender;
+ var cb = (Button)sender;
var datacontext = cb.DataContext;
- CompactCustomerDC customer = (CompactCustomerDC) datacontext;
+ CompactCustomerDC customer = (CompactCustomerDC)datacontext;
var control = new InformationView();
control.SetXaml(ServiceFacade.DoOperationsServiceSync(s => s.GetXAMLInformationStringForCustomer(customer.CustomerOid)));
diff --git a/BeWo/Scheduler/View/SchedulerAppointmentEditForm.xaml b/BeWo/Scheduler/View/SchedulerAppointmentEditForm.xaml
index 2c55de6f4..43a03e427 100644
--- a/BeWo/Scheduler/View/SchedulerAppointmentEditForm.xaml
+++ b/BeWo/Scheduler/View/SchedulerAppointmentEditForm.xaml
@@ -20,6 +20,7 @@
+