refactorinf & max result per page

This commit is contained in:
Paul Schneider 2018-08-01 10:55:52 +02:00
commit 63508b4291
12 changed files with 223 additions and 102 deletions

View file

@ -42,7 +42,19 @@ namespace Yavsc.Models.Workflow
[Display(Name="GiveAnExplicitReason")]
public string Reason { get; set; }
public override string Description => "Rendez-vous";
string _description = "Rendez-vous";
public override string Description
{
get
{
string type = ResourcesHelpers.GlobalLocalizer[this.GetType().Name];
return $"{_description} {type}";
}
set
{
_description = value;
}
}
public RdvQuery()
{