2023-03-19 17:57:55 +00:00
|
|
|
@using Yavsc
|
|
|
|
|
@using Yavsc.Models
|
2019-01-01 16:28:47 +00:00
|
|
|
@using Yavsc.Models.Musical;
|
2023-03-19 17:57:55 +00:00
|
|
|
@using Yavsc.Models.Drawing;
|
|
|
|
|
@using Yavsc.Models.Haircut;
|
|
|
|
|
@using Yavsc.Models.Blog;
|
2019-01-01 16:28:47 +00:00
|
|
|
@using Yavsc.Models.Billing;
|
|
|
|
|
@using Yavsc.Models.Workflow;
|
|
|
|
|
@using Yavsc.Models.Relationship;
|
2023-03-19 17:57:55 +00:00
|
|
|
@using Yavsc.Models.Musical.Profiles;
|
|
|
|
|
@using Yavsc.Models.Auth;
|
|
|
|
|
@using Yavsc.Models.Identity;
|
|
|
|
|
@using Yavsc.Models.Access;
|
2025-06-13 15:22:02 +01:00
|
|
|
@using Yavsc.Abstract.Models.Messaging;
|
2019-01-01 16:28:47 +00:00
|
|
|
@using Yavsc.Billing;
|
2023-03-19 17:57:55 +00:00
|
|
|
@using Yavsc.Server.Models.Calendar;
|
2025-02-23 20:23:23 +00:00
|
|
|
@using Yavsc.ViewModels.Blog;
|
2023-03-19 17:57:55 +00:00
|
|
|
@using Yavsc.ViewModels.Haircut;
|
2019-01-01 16:28:47 +00:00
|
|
|
@using Yavsc.ViewModels.Administration;
|
2023-03-19 17:57:55 +00:00
|
|
|
@using Yavsc.ViewModels.Account;
|
2019-01-01 16:28:47 +00:00
|
|
|
@using Yavsc.ViewModels.Manage;
|
|
|
|
|
@using Yavsc.ViewModels.FrontOffice;
|
2023-03-19 17:57:55 +00:00
|
|
|
@using Yavsc.ViewModels.Calendar;
|
2019-01-01 16:28:47 +00:00
|
|
|
@using Yavsc.ViewModels.Relationship;
|
|
|
|
|
@using Yavsc.ViewModels.Workflow;
|
2023-03-20 19:38:50 +00:00
|
|
|
@using Yavsc.ViewModels.Auth;
|
|
|
|
|
@using Microsoft.AspNetCore.Authorization;;
|
|
|
|
|
@using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
@using Microsoft.AspNetCore.Html;
|
2023-04-01 13:03:56 +01:00
|
|
|
@using Microsoft.AspNetCore.Identity;
|
2023-03-20 19:38:50 +00:00
|
|
|
@using Yavsc.Helpers;
|
2025-07-15 19:43:41 +01:00
|
|
|
@using Yavsc.Server.Helpers;
|
2019-01-01 16:28:47 +00:00
|
|
|
@using PayPal.PayPalAPIInterfaceService.Model;
|
2025-08-24 16:07:53 +01:00
|
|
|
@using IdentityServer8.EntityFramework.Entities;
|
2024-11-06 13:00:34 +00:00
|
|
|
|
2023-03-19 17:57:55 +00:00
|
|
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
2023-04-07 21:08:47 +01:00
|
|
|
@addTagHelper *, Yavsc
|
2023-04-08 01:10:36 +01:00
|
|
|
|
2023-03-20 18:24:10 +00:00
|
|
|
@inject IAuthorizationService AuthorizationService
|
2025-08-31 18:27:53 +01:00
|
|
|
@inject Microsoft.AspNetCore.Mvc.Localization.IHtmlLocalizer<Startup> SR
|
2023-03-26 20:41:42 +01:00
|
|
|
@inject Microsoft.Extensions.Options.IOptions<SiteSettings> SiteSettings
|
2023-04-01 13:03:56 +01:00
|
|
|
@inject SignInManager<ApplicationUser> SignInManager
|
|
|
|
|
@inject UserManager<ApplicationUser> UserManager
|
2024-11-06 13:00:34 +00:00
|
|
|
|