- AssetGovernance.Function
- AssetGovernance.Infrastructure< /li>
AssetGovernance.Application - AssetGovernance.Tests
Code: Select all
namespace AssetGovernance.Domain.Applications;
public sealed record Application(
Guid Id,
Guid AppId,
Guid ServicePrincipalId,
string DisplayName,
string? Description,
bool? IsEnabled,
ICollection Tags,
string? LeanIxProductId,
string? LeanIxApplicationId,
ICollection Owners
) : ITaggableObject, ILeanIxAssignableObject;
Code: Select all
using Application = AssetGovernance.Domain.Applications.Application
Gibt es eine Möglichkeit, dem Compiler mitzuteilen, dass Anwendungsreferenzen ausgeführt werden sollen? standardmäßig auf die Klasse Application verweisen und nicht auf den Namespace? Wenn nicht, gibt es andere Namen für die „Anwendungsschicht“ in sauberer Architektur?