Specialized the book query notification

vnext
Paul Schneider 8 years ago
parent 099c20bcb9
commit 242332a1d6
1 changed files with 6 additions and 3 deletions

@ -6,17 +6,20 @@ namespace Yavsc.Helpers
{
public static class EventHelpers
{
public static YaEvent CreateEvent(this BookQuery query,
public static BookQueryEvent CreateEvent(this BookQuery query,
IStringLocalizer SR)
{
var yaev = new YaEvent
var yaev = new BookQueryEvent
{
Title = query.Client.UserName + " "+ SR["is asking you for a date"]+".",
Comment = (query.Previsional != null) ?
SR["Deposit"] + string.Format(": {0:00}",
query.Previsional) : SR["No deposit."],
Description = SR["Address"] + ": " + query.Location.Address + "\n" +
SR["Date"] + ": " + query.EventDate.ToString("D")
SR["Date"] + ": " + query.EventDate.ToString("D"),
StartDate = query.EventDate,
Location = query.Location,
CommandId = query.Id
};
return yaev;
}

Loading…