-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36e8b16
commit 42835ed
Showing
1,466 changed files
with
42,368 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
global using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
global using Microsoft.VisualStudio.TestTools.UnitTesting; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
global using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
global using Microsoft.VisualStudio.TestTools.UnitTesting; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
global using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
global using Microsoft.VisualStudio.TestTools.UnitTesting; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ public class UnitTest1 | |
public void TestMethod1() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...aphAPIs.AgreementAcceptancesGet/E5Renewer.Models.GraphAPIs.AgreementAcceptancesGet.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Graph" Version="5.63.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\E5Renewer.Models.Modules\E5Renewer.Models.Modules.csproj" /> | ||
<ProjectReference Include="..\E5Renewer.Models.GraphAPIs\E5Renewer.Models.GraphAPIs.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using E5Renewer.Models.Modules; | ||
|
||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Graph; | ||
|
||
namespace E5Renewer.Models.GraphAPIs.AgreementAcceptancesGet; | ||
|
||
/// <summary>AgreementAcceptances.Get api implementation.</summary> | ||
[Module] | ||
public class Get : BasicModule, IAPIFunction | ||
{ | ||
/// <inheritdoc/> | ||
public ILogger logger { get; } | ||
|
||
/// <summary>Initialize <see cref="Get"/> class.</summary> | ||
/// <param name="logger">The <see cref="ILogger{IAPIFunction}"/> implementation.</param> | ||
/// <remarks>All params should be injected by Asp.Net Core.</remarks> | ||
public Get(ILogger<Get> logger) | ||
{ | ||
this.logger = logger; | ||
} | ||
|
||
/// <inheritdoc/> | ||
public string id { get => "AgreementAcceptances.Get"; } | ||
|
||
/// <inheritdoc/> | ||
public async Task<object?> CallAsync(GraphServiceClient client) => await client.AgreementAcceptances.GetAsync(); | ||
} |
19 changes: 19 additions & 0 deletions
19
E5Renewer.Models.GraphAPIs.Agreements/E5Renewer.Models.GraphAPIs.Agreements.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Graph" Version="5.63.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\E5Renewer.Models.Modules\E5Renewer.Models.Modules.csproj" /> | ||
<ProjectReference Include="..\E5Renewer.Models.GraphAPIs\E5Renewer.Models.GraphAPIs.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using E5Renewer.Models.Modules; | ||
|
||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Graph; | ||
|
||
namespace E5Renewer.Models.GraphAPIs.Agreements; | ||
|
||
/// <summary>Agreements.Get api implementation.</summary> | ||
[Module] | ||
public class Get : BasicModule, IAPIFunction | ||
{ | ||
/// <inheritdoc/> | ||
public ILogger logger { get; } | ||
|
||
/// <summary>Initialize <see cref="Get"/> class.</summary> | ||
/// <param name="logger">The <see cref="ILogger{IAPIFunction}"/> implementation.</param> | ||
/// <remarks>All params should be injected by Asp.Net Core.</remarks> | ||
public Get(ILogger<Get> logger) | ||
{ | ||
this.logger = logger; | ||
} | ||
|
||
/// <inheritdoc/> | ||
public string id { get => "Agreements.Get"; } | ||
|
||
/// <inheritdoc/> | ||
public async Task<object?> CallAsync(GraphServiceClient client) => await client.Agreements.GetAsync(); | ||
} |
19 changes: 19 additions & 0 deletions
19
E5Renewer.Models.GraphAPIs.AppCatalogs/E5Renewer.Models.GraphAPIs.AppCatalogs.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Graph" Version="5.63.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\E5Renewer.Models.Modules\E5Renewer.Models.Modules.csproj" /> | ||
<ProjectReference Include="..\E5Renewer.Models.GraphAPIs\E5Renewer.Models.GraphAPIs.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using E5Renewer.Models.Modules; | ||
|
||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Graph; | ||
|
||
namespace E5Renewer.Models.GraphAPIs.AppCatalogs; | ||
/// <summary>AppCatalogs.Get api implementation.</summary> | ||
[Module] | ||
public class Get : BasicModule, IAPIFunction | ||
{ | ||
/// <inheritdoc/> | ||
public ILogger logger { get; } | ||
|
||
/// <summary>Initialize <see cref="Get"/> class.</summary> | ||
/// <param name="logger">The <see cref="ILogger{IAPIFunction}"/> implementation.</param> | ||
/// <remarks>All params should be injected by Asp.Net Core.</remarks> | ||
public Get(ILogger<Get> logger) => this.logger = logger; | ||
|
||
/// <inheritdoc/> | ||
public string id { get => "AppCatalogs.Get"; } | ||
|
||
/// <inheritdoc/> | ||
public async Task<object?> CallAsync(GraphServiceClient client) => await client.AppCatalogs.GetAsync(); | ||
} |
19 changes: 19 additions & 0 deletions
19
...els.GraphAPIs.ApplicationTemplates/E5Renewer.Models.GraphAPIs.ApplicationTemplates.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Graph" Version="5.63.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\E5Renewer.Models.Modules\E5Renewer.Models.Modules.csproj" /> | ||
<ProjectReference Include="..\E5Renewer.Models.GraphAPIs\E5Renewer.Models.GraphAPIs.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using E5Renewer.Models.Modules; | ||
|
||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Graph; | ||
|
||
namespace E5Renewer.Models.GraphAPIs.ApplicationTemplates; | ||
/// <summary>ApplicationTemplates.Get api implementation.</summary> | ||
[Module] | ||
public class Get : BasicModule, IAPIFunction | ||
{ | ||
/// <inheritdoc/> | ||
public ILogger logger { get; } | ||
|
||
/// <summary>Initialize <see cref="Get"/> class.</summary> | ||
/// <param name="logger">The <see cref="ILogger{IAPIFunction}"/> implementation.</param> | ||
/// <remarks>All params should be injected by Asp.Net Core.</remarks> | ||
public Get(ILogger<Get> logger) => this.logger = logger; | ||
|
||
/// <inheritdoc/> | ||
public string id { get => "ApplicationTemplates.Get"; } | ||
|
||
/// <inheritdoc/> | ||
public async Task<object?> CallAsync(GraphServiceClient client) => await client.ApplicationTemplates.GetAsync(); | ||
} |
19 changes: 19 additions & 0 deletions
19
E5Renewer.Models.GraphAPIs.Applications/E5Renewer.Models.GraphAPIs.Applications.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Graph" Version="5.63.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\E5Renewer.Models.Modules\E5Renewer.Models.Modules.csproj" /> | ||
<ProjectReference Include="..\E5Renewer.Models.GraphAPIs\E5Renewer.Models.GraphAPIs.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using E5Renewer.Models.Modules; | ||
|
||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Graph; | ||
|
||
namespace E5Renewer.Models.GraphAPIs.Applications; | ||
/// <summary>Applications.Get api implementation.</summary> | ||
[Module] | ||
public class Get : BasicModule, IAPIFunction | ||
{ | ||
/// <inheritdoc/> | ||
public ILogger logger { get; } | ||
|
||
/// <summary>Initialize <see cref="Get"/> class.</summary> | ||
/// <param name="logger">The <see cref="ILogger{IAPIFunction}"/> implementation.</param> | ||
/// <remarks>All params should be injected by Asp.Net Core.</remarks> | ||
public Get(ILogger<Get> logger) => this.logger = logger; | ||
|
||
/// <inheritdoc/> | ||
public string id { get => "Applications.Get"; } | ||
|
||
/// <inheritdoc/> | ||
public async Task<object?> CallAsync(GraphServiceClient client) => await client.Applications.GetAsync(); | ||
} |
19 changes: 19 additions & 0 deletions
19
E5Renewer.Models.GraphAPIs.AuditLogs/E5Renewer.Models.GraphAPIs.AuditLogs.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Graph" Version="5.63.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\E5Renewer.Models.Modules\E5Renewer.Models.Modules.csproj" /> | ||
<ProjectReference Include="..\E5Renewer.Models.GraphAPIs\E5Renewer.Models.GraphAPIs.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using E5Renewer.Models.Modules; | ||
|
||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Graph; | ||
|
||
namespace E5Renewer.Models.GraphAPIs.AuditLogs; | ||
/// <summary>AuditLogs.Get api implementation.</summary> | ||
[Module] | ||
public class Get : BasicModule, IAPIFunction | ||
{ | ||
/// <inheritdoc/> | ||
public ILogger logger { get; } | ||
|
||
/// <summary>Initialize <see cref="Get"/> class.</summary> | ||
/// <param name="logger">The <see cref="ILogger{IAPIFunction}"/> implementation.</param> | ||
/// <remarks>All params should be injected by Asp.Net Core.</remarks> | ||
public Get(ILogger<Get> logger) => this.logger = logger; | ||
|
||
/// <inheritdoc/> | ||
public string id { get => "AuditLogs.Get"; } | ||
|
||
/// <inheritdoc/> | ||
public async Task<object?> CallAsync(GraphServiceClient client) => await client.AuditLogs.GetAsync(); | ||
} |
19 changes: 19 additions & 0 deletions
19
...MethodConfigurations/E5Renewer.Models.GraphAPIs.AuthenticationMethodConfigurations.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Graph" Version="5.63.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\E5Renewer.Models.Modules\E5Renewer.Models.Modules.csproj" /> | ||
<ProjectReference Include="..\E5Renewer.Models.GraphAPIs\E5Renewer.Models.GraphAPIs.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
24 changes: 24 additions & 0 deletions
24
E5Renewer.Models.GraphAPIs.AuthenticationMethodConfigurations/Get.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using E5Renewer.Models.Modules; | ||
|
||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Graph; | ||
|
||
namespace E5Renewer.Models.GraphAPIs.AuthenticationMethodConfigurations; | ||
/// <summary>AuthenticationMethodConfigurations.Get api implementation.</summary> | ||
[Module] | ||
public class Get : BasicModule, IAPIFunction | ||
{ | ||
/// <inheritdoc/> | ||
public ILogger logger { get; } | ||
|
||
/// <summary>Initialize <see cref="Get"/> class.</summary> | ||
/// <param name="logger">The <see cref="ILogger{IAPIFunction}"/> implementation.</param> | ||
/// <remarks>All params should be injected by Asp.Net Core.</remarks> | ||
public Get(ILogger<Get> logger) => this.logger = logger; | ||
|
||
/// <inheritdoc/> | ||
public string id { get => "AuthenticationMethodConfigurations.Get"; } | ||
|
||
/// <inheritdoc/> | ||
public async Task<object?> CallAsync(GraphServiceClient client) => await client.AuthenticationMethodConfigurations.GetAsync(); | ||
} |
Oops, something went wrong.