2017-01-13 16:31:40 +01:00
|
|
|
|
|
|
|
|
@using Microsoft.AspNet.Identity;
|
|
|
|
|
@using Microsoft.AspNet.Mvc;
|
|
|
|
|
@using Microsoft.Extensions.Localization;
|
|
|
|
|
@using Microsoft.AspNet.Mvc.Localization;
|
|
|
|
|
@using Microsoft.AspNet.Authorization;
|
|
|
|
|
@using Microsoft.Extensions.OptionsModel;
|
2017-02-12 23:53:53 +01:00
|
|
|
@using System.Security.Claims;
|
2017-01-13 16:31:40 +01:00
|
|
|
@using System.Web.Optimization;
|
2016-06-14 03:37:57 +02:00
|
|
|
@using Yavsc;
|
2017-01-13 16:31:40 +01:00
|
|
|
@using Yavsc.Helpers;
|
2016-06-14 03:37:57 +02:00
|
|
|
@using Yavsc.Models;
|
2017-01-21 22:36:43 +01:00
|
|
|
@using Yavsc.Models.Access;
|
2017-02-03 15:07:11 +01:00
|
|
|
@using Yavsc.Models.Auth;
|
2016-06-14 03:37:57 +02:00
|
|
|
@using Yavsc.Models.Google;
|
2017-02-20 15:53:25 +01:00
|
|
|
@using Yavsc.Models.Messaging;
|
2017-02-12 22:25:08 +01:00
|
|
|
@using Yavsc.Models.Musical;
|
|
|
|
|
@using Yavsc.Models.Musical.Profiles;
|
2016-06-14 03:37:57 +02:00
|
|
|
@using Yavsc.Models.Market;
|
|
|
|
|
@using Yavsc.Models.Billing;
|
|
|
|
|
@using Yavsc.Models.Workflow;
|
2017-01-22 18:32:49 +01:00
|
|
|
@using Yavsc.Models.Relationship
|
2017-02-12 03:53:33 +01:00
|
|
|
@using Yavsc.Models.Drawing;
|
2017-02-28 14:01:24 +01:00
|
|
|
@using Yavsc.Models.Haircut;
|
2017-05-12 12:15:57 +02:00
|
|
|
@using Yavsc.Models.Payment;
|
2017-06-01 14:00:19 +02:00
|
|
|
@using Yavsc.Models.Calendar;
|
2017-06-14 12:28:08 +02:00
|
|
|
@using Yavsc.Models.Google.Calendar
|
2017-06-08 00:26:29 +02:00
|
|
|
@using Yavsc.Billing;
|
2017-01-22 18:32:49 +01:00
|
|
|
|
2017-06-08 11:05:57 +02:00
|
|
|
@using Yavsc.ViewModels;
|
2016-06-14 03:37:57 +02:00
|
|
|
@using Yavsc.ViewModels.Account;
|
|
|
|
|
@using Yavsc.ViewModels.Manage;
|
2016-05-17 18:35:45 +02:00
|
|
|
@using Yavsc.ViewModels.Calendar;
|
2017-01-13 16:31:40 +01:00
|
|
|
@using Yavsc.ViewModels.Auth;
|
|
|
|
|
@using Yavsc.ViewModels.Administration;
|
2017-01-21 22:36:43 +01:00
|
|
|
@using Yavsc.ViewModels.Relationship;
|
2017-03-05 13:48:11 +01:00
|
|
|
@using Yavsc.ViewModels.Workflow;
|
2017-04-12 02:10:02 +02:00
|
|
|
@using Yavsc.ViewModels.Blogspot;
|
2017-05-16 02:16:09 +02:00
|
|
|
@using Microsoft.AspNet.Hosting;
|
|
|
|
|
@using Microsoft.Extensions.PlatformAbstractions;
|
2017-05-26 03:35:56 +02:00
|
|
|
@using PayPal.PayPalAPIInterfaceService.Model;
|
2017-02-27 19:28:32 +01:00
|
|
|
|
2016-05-17 18:22:18 +02:00
|
|
|
@inject IViewLocalizer LocString
|
|
|
|
|
@addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers"
|
2016-05-17 18:35:45 +02:00
|
|
|
@addTagHelper "*, Yavsc"
|
2017-04-12 02:10:02 +02:00
|
|
|
|
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
|
2017-05-16 02:16:09 +02:00
|
|
|
@inject IHostingEnvironment HostingEnvironment
|