yavsc/src/Yavsc.Server/Models/Workflow/RdvQuery.cs
Paul Schneider f8abb22423
All checks were successful
Dotnet build and test / build (pull_request) Successful in 4m44s
server: enable nullable annotations in legacy files
2026-09-06 16:11:37 +01:00

77 lines
1.9 KiB
C#

#nullable enable annotations
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Yavsc.Models.Workflow
{
using System.Collections.Generic;
using Yavsc.Models.Billing;
using Yavsc.Models.Relationship;
using Yavsc.Billing;
/// <summary>
/// Query, for a date, with a given perfomer, at this given place.
/// </summary>
public class RdvQuery : NominativeServiceCommand
{
/// <summary>
/// The command identifier
/// </summary>
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
override public long Id { get; set; }
[Display(Name = "Event date")]
public DateTime EventDate
{
get;
set;
}
public Location Location
{
get;
set;
}
public LocationKind LocationType
{
set;
get;
}
[Display(Name="GiveAnExplicitReason")]
public string Reason { get; set; }
string _description = "Rendez-vous";
public override string Description
{
get
{
var localizer = ResourcesHelpers.GlobalLocalizer;
string type = localizer is null ? this.GetType().Name : localizer[this.GetType().Name];
return $"{_description} {type}";
}
set
{
_description = value;
}
}
public RdvQuery()
{
}
public RdvQuery(string activityCode, Location eventLocation, DateTime eventDate)
{
Location = eventLocation;
EventDate = eventDate;
ActivityCode = activityCode;
}
public override List<IBillItem> GetBillItems()
{
throw new NotImplementedException();
}
}
}