Specialized the book query notification

This commit is contained in:
2016-07-27 14:31:32 +02:00
parent 099c20bcb9
commit 242332a1d6

View File

@ -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;
}