Passage à ASP.NET vNext

This commit is contained in:
Paul Schneider 2016-05-17 18:22:18 +02:00
commit 388b004837
1929 changed files with 104611 additions and 235941 deletions

View file

@ -0,0 +1,24 @@
using Microsoft.Extensions.Localization;
using Yavsc.Models.Booking;
using Yavsc.Models.Messaging;
namespace Yavsc.Helpers
{
public static class EventHelpers
{
public static YaEvent CreateEvent(this BookQuery query,
IStringLocalizer SR)
{
var yaev = new YaEvent
{
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")
};
return yaev;
}
}
}