@page "/configurationrepositories"
@using Microsoft.EntityFrameworkCore
@using OneSwiss.Server.Attributes
@using OneSwiss.Server.Models
@using OneSwiss.Server.Components.Shared
@rendermode InteractiveServer
@attribute [ExtAuthorize(Roles.ReadMaintenanceTasks, Roles.WriteMaintenanceTasks)]
Агент
Имя
Хост
Порт
@context.Agent.InstanceName
@context.Name
@context.Host
@context.Port
@code {
private static IQueryable ItemsSelector(IQueryable arg)
{
return arg.Include(c => c.Agent);
}
}