refactorinf & max result per page
This commit is contained in:
parent
6c350a261f
commit
63508b4291
12 changed files with 223 additions and 102 deletions
|
|
@ -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()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue