41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BS.Shared;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.DataContracts.Compact;
|
|
|
|
namespace BeWo.View.Report.FLSReport
|
|
{
|
|
public class FLSOverviewConfig
|
|
{
|
|
public CompactCustomerDC Customer { get; set; }
|
|
|
|
public DateInterval DateInterval { get; set; }
|
|
|
|
public CompactEmployeeDC Employee { get; set; }
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
public List<long> GoalOids { get; set; }
|
|
|
|
public FLSReportType ReportType { get; set; }
|
|
|
|
//public List<ServiceCategoryDC> ServiceCategories { get; set; }
|
|
|
|
public List<ServiceDescriptionDC> ServiceDesciptions { get; set; }
|
|
|
|
public bool ShowChart { get; set; }
|
|
|
|
public bool ShowOnlyTotalRows { get; set; }
|
|
|
|
public bool ShowServiceRecords { get; set; }
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
public bool ShowOnlyMarker { get; set; }
|
|
|
|
public bool ShowOnlyDeleted { get; set; }
|
|
|
|
public bool ShowEinheitInMinuten { get; set; }
|
|
}
|
|
} |