@page "/objects/houses" @using Hcs.WebApp.Components.Dialogs @using Hcs.WebApp.Services @using Microsoft.AspNetCore.Authorization @using System.Security.Claims @inherits SyncedPageBase @attribute [Authorize] @inject HouseService HouseService @inject DialogService DialogService Жилищный фонд @code { protected override Campaign.CampaignType CampaignType => Campaign.CampaignType.ExportHousesData_15_7_0_1; protected override bool HasPermission(ClaimsPrincipal user) { return user.IsOperatorOrHigher(); } protected override Task> GetDataAsync() { return HouseService.GetAllHousesAsync(); } }