git_bsmd/nsw/Source/bsmd.database/ShowReportAttribute.cs
Daniel Schick 695c07a5f7 Version 3.9.2
Diverse Korrekturen für Go-Live, gelöschte-ID Bug gefunden (war den Core als stat. Dictionary Key Objekt zu behalten und später nicht mehr neu zu laden, so überschrieb der "alte" Core die neue Version mit der Visit-Id.
2017-12-05 17:48:57 +00:00

44 lines
1.1 KiB
C#

//
// Class: ShowReportAttribute
// Current CLR: 4.0.30319.34209
// System: Microsoft Visual Studio 10.0
// Author: dani
// Created: 5/28/2015 11:38:49 AM
//
// Copyright (c) 2015 Informatikbüro Daniel Schick. All rights reserved.
using System;
using System.Collections.Generic;
namespace bsmd.database
{
[AttributeUsage(AttributeTargets.Property)]
public class ShowReportAttribute : Attribute
{
public ShowReportAttribute() { }
}
[AttributeUsage(AttributeTargets.Property)]
public class DateOnlyAttribute : Attribute
{
public DateOnlyAttribute() { }
}
[AttributeUsage(AttributeTargets.Property)]
public class ReportDisplayNameAttribute : Attribute
{
private string displayName;
public ReportDisplayNameAttribute(string displayName)
{
this.displayName = displayName;
}
public string DisplayName
{
get { return this.displayName; }
set { this.displayName = value; }
}
}
}