2016-06-14 03:37:57 +02:00
|
|
|
@using Yavsc;
|
|
|
|
|
@using Yavsc.Models;
|
|
|
|
|
@using Yavsc.Models.Google;
|
|
|
|
|
@using Yavsc.Models.Booking;
|
|
|
|
|
@using Yavsc.Models.Market;
|
|
|
|
|
@using Yavsc.Models.Billing;
|
|
|
|
|
@using Yavsc.Models.Workflow;
|
|
|
|
|
@using Yavsc.ViewModels.Account;
|
|
|
|
|
@using Yavsc.ViewModels.Manage;
|
2016-05-17 18:35:45 +02:00
|
|
|
@using Yavsc.ViewModels.Calendar;
|
2016-06-14 03:37:57 +02:00
|
|
|
@using Microsoft.AspNet.Identity;
|
2016-05-17 18:22:18 +02:00
|
|
|
@using Microsoft.AspNet.Mvc;
|
|
|
|
|
@using Microsoft.Extensions.Localization;
|
|
|
|
|
@using Microsoft.AspNet.Mvc.Localization;
|
|
|
|
|
@using Microsoft.AspNet.Authorization;
|
|
|
|
|
@using Microsoft.Extensions.OptionsModel;
|
|
|
|
|
@using System.Web.Optimization;
|
|
|
|
|
|
|
|
|
|
@inject IViewLocalizer LocString
|
|
|
|
|
@addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers"
|
2016-05-17 18:35:45 +02:00
|
|
|
@addTagHelper "*, Yavsc"
|
2016-05-20 12:45:39 +02:00
|
|
|
@inject IStringLocalizer<Yavsc.Resources.YavscLocalisation> SR
|
2016-05-17 18:22:18 +02:00
|
|
|
@inject IAuthorizationService AuthorizationService
|
|
|
|
|
@inject IOptions<GoogleAuthSettings> GoogleSettings
|
2016-05-17 18:35:45 +02:00
|
|
|
@inject IOptions<SiteSettings> SiteSettings
|