Add controllers for the Get method #9

Merged
Wesser merged 33 commits from feat/controller-get into release/v1.0.0 2024-02-19 12:06:31 +03:00
5 changed files with 7 additions and 5 deletions
Showing only changes of commit 810c8ec5cf - Show all commits

View File

@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using System;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Mirea.Api.Endpoint.Models;
using System;
namespace Mirea.Api.Endpoint.Common.Extensions; namespace Mirea.Api.Endpoint.Common.Extensions;

View File

@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using System;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Mirea.Api.Endpoint.Models;
using System;
namespace Mirea.Api.Endpoint.Common.Extensions; namespace Mirea.Api.Endpoint.Common.Extensions;

View File

@ -5,7 +5,7 @@ using Microsoft.OpenApi.Models;
using Swashbuckle.AspNetCore.SwaggerGen; using Swashbuckle.AspNetCore.SwaggerGen;
using System; using System;
namespace Mirea.Api.Endpoint; namespace Mirea.Api.Endpoint.Configuration;
public class ConfigureSwaggerOptions(IApiVersionDescriptionProvider provider) : IConfigureOptions<SwaggerGenOptions> public class ConfigureSwaggerOptions(IApiVersionDescriptionProvider provider) : IConfigureOptions<SwaggerGenOptions>
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.IO; using System.IO;
namespace Mirea.Api.Endpoint; namespace Mirea.Api.Endpoint.Configuration;
internal static class EnvironmentManager internal static class EnvironmentManager
{ {

View File

@ -1,4 +1,4 @@
namespace Mirea.Api.Endpoint.Common.Extensions; namespace Mirea.Api.Endpoint.Models;
/// <summary> /// <summary>
/// A class for providing information about an error /// A class for providing information about an error