diff --git a/ComputerShop.sln b/ComputerShop.sln new file mode 100644 index 0000000..53f150f --- /dev/null +++ b/ComputerShop.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34511.84 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComputerShopRestApi", "ComputerShopRestApi\ComputerShopRestApi.csproj", "{2C36A31D-FD74-4E83-A271-1F300D008E26}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2C36A31D-FD74-4E83-A271-1F300D008E26}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2C36A31D-FD74-4E83-A271-1F300D008E26}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2C36A31D-FD74-4E83-A271-1F300D008E26}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2C36A31D-FD74-4E83-A271-1F300D008E26}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9414A502-1CCD-466A-9FFA-21B0297A8ECA} + EndGlobalSection +EndGlobal diff --git a/ComputerShopRestApi/ComputerShopRestApi.csproj b/ComputerShopRestApi/ComputerShopRestApi.csproj new file mode 100644 index 0000000..2c33b1c --- /dev/null +++ b/ComputerShopRestApi/ComputerShopRestApi.csproj @@ -0,0 +1,13 @@ + + + + net6.0 + enable + enable + + + + + + + diff --git a/ComputerShopRestApi/Controllers/WeatherForecastController.cs b/ComputerShopRestApi/Controllers/WeatherForecastController.cs new file mode 100644 index 0000000..d05a5d6 --- /dev/null +++ b/ComputerShopRestApi/Controllers/WeatherForecastController.cs @@ -0,0 +1,33 @@ +using Microsoft.AspNetCore.Mvc; + +namespace ComputerShopRestApi.Controllers +{ + [ApiController] + [Route("[controller]")] + public class WeatherForecastController : ControllerBase + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + private readonly ILogger _logger; + + public WeatherForecastController(ILogger logger) + { + _logger = logger; + } + + [HttpGet(Name = "GetWeatherForecast")] + public IEnumerable Get() + { + return Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = DateTime.Now.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = Summaries[Random.Shared.Next(Summaries.Length)] + }) + .ToArray(); + } + } +} diff --git a/ComputerShopRestApi/Program.cs b/ComputerShopRestApi/Program.cs new file mode 100644 index 0000000..d0e000f --- /dev/null +++ b/ComputerShopRestApi/Program.cs @@ -0,0 +1,19 @@ +var Builder = WebApplication.CreateBuilder(args); + +Builder.Services.AddControllers(); +Builder.Services.AddEndpointsApiExplorer(); +Builder.Services.AddSwaggerGen(); + +var App = Builder.Build(); + +if (App.Environment.IsDevelopment()) +{ + App.UseSwagger(); + App.UseSwaggerUI(); +} + +App.UseHttpsRedirection(); +App.UseAuthorization(); +App.MapControllers(); + +App.Run(); diff --git a/ComputerShopRestApi/Properties/launchSettings.json b/ComputerShopRestApi/Properties/launchSettings.json new file mode 100644 index 0000000..e41d14d --- /dev/null +++ b/ComputerShopRestApi/Properties/launchSettings.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:32604", + "sslPort": 44351 + } + }, + "profiles": { + "ComputerShopRestApi": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7223;http://localhost:5055", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/ComputerShopRestApi/WeatherForecast.cs b/ComputerShopRestApi/WeatherForecast.cs new file mode 100644 index 0000000..dca73e3 --- /dev/null +++ b/ComputerShopRestApi/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace ComputerShopRestApi +{ + public class WeatherForecast + { + public DateTime Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string? Summary { get; set; } + } +} diff --git a/ComputerShopRestApi/appsettings.Development.json b/ComputerShopRestApi/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/ComputerShopRestApi/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/ComputerShopRestApi/appsettings.json b/ComputerShopRestApi/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/ComputerShopRestApi/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +}