diff --git a/Atillo/.idea/.gitignore b/Atillo/.idea/.gitignore
new file mode 100644
index 0000000..c999462
--- /dev/null
+++ b/Atillo/.idea/.gitignore
@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/.idea.Atillo.iml
+/modules.xml
+/contentModel.xml
+/projectSettingsUpdater.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/Atillo/.idea/encodings.xml b/Atillo/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/Atillo/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Atillo/.idea/indexLayout.xml b/Atillo/.idea/indexLayout.xml
new file mode 100644
index 0000000..7b08163
--- /dev/null
+++ b/Atillo/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/.gitignore b/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/.gitignore
new file mode 100644
index 0000000..b44f130
--- /dev/null
+++ b/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/.gitignore
@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/contentModel.xml
+/projectSettingsUpdater.xml
+/.idea.StudentWebApi.iml
+/modules.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/encodings.xml b/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/indexLayout.xml b/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/indexLayout.xml
new file mode 100644
index 0000000..7b08163
--- /dev/null
+++ b/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/vcs.xml b/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/vcs.xml
new file mode 100644
index 0000000..62eda31
--- /dev/null
+++ b/Atillo/StudentWebApi/.idea/.idea.StudentWebApi.dir/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/Controllers/StudentController.cs b/Atillo/StudentWebApi/Controllers/StudentController.cs
new file mode 100644
index 0000000..3193d54
--- /dev/null
+++ b/Atillo/StudentWebApi/Controllers/StudentController.cs
@@ -0,0 +1,53 @@
+using Microsoft.AspNetCore.Mvc;
+using Services.Interfaces;
+using StudentWebApi.Models;
+
+namespace StudentWebApi.Controllers
+{
+ [ApiController]
+ [Route("api/[controller]")]
+ public class StudentController : ControllerBase
+ {
+ private readonly IStudentService _studentService;
+
+ public StudentController(IStudentService studentService)
+ {
+ _studentService = studentService;
+ }
+
+ [HttpGet]
+ public ActionResult> GetAllStudents()
+ {
+ return Ok(_studentService.GetAllStudents());
+ }
+
+ [HttpGet("{id}")]
+ public ActionResult GetStudentById(int id)
+ {
+ Student? student = _studentService.GetStudentById(id);
+
+ return student == null ? NotFound("Student not found") : Ok(student);
+ }
+
+ [HttpPost]
+ public IActionResult AddStudent([FromBody] Student student)
+ {
+ Student? studentToBeAdded = _studentService.AddStudent(student);
+ return studentToBeAdded != null? Ok(student): BadRequest("Id already taken.");
+ }
+
+ [HttpPut("{id}")]
+ public IActionResult UpdateStudent(int id, [FromBody] Student student)
+ {
+ Student? studentToUpdate = _studentService.UpdateStudent(id, student);
+
+ return studentToUpdate == null ? NotFound("Student not found") : Ok(studentToUpdate);
+ }
+
+ [HttpDelete("{id}")]
+ public ActionResult DeleteStudent(long id)
+ {
+ return _studentService.DeleteStudent(id)? Ok($"Removed {id} successfully") : NotFound($"Couldn't find id: {id}");
+ }
+ }
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/Models/Student.cs b/Atillo/StudentWebApi/Models/Student.cs
new file mode 100644
index 0000000..d1745d3
--- /dev/null
+++ b/Atillo/StudentWebApi/Models/Student.cs
@@ -0,0 +1,22 @@
+namespace StudentWebApi.Models
+{
+ public class Student
+ {
+ private long _studentId;
+ private string _name;
+ private string _course;
+
+ public long StudentId { get; set; }
+ public string Name { get; set; }
+ public string Course { get; set; }
+
+ public Student() { }
+
+ public Student(long studentId, string name, string course)
+ {
+ StudentId = studentId;
+ Name = name;
+ Course = course;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/Program.cs b/Atillo/StudentWebApi/Program.cs
new file mode 100644
index 0000000..2159ff0
--- /dev/null
+++ b/Atillo/StudentWebApi/Program.cs
@@ -0,0 +1,24 @@
+using Services.Interfaces;
+using StudentWebApi.Services.Implementation;
+
+var builder = WebApplication.CreateBuilder(args);
+
+// Add services to the container.
+// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
+builder.Services.AddOpenApi();
+builder.Services.AddSingleton();
+builder.Services.AddControllers();
+
+var app = builder.Build();
+
+// Configure the HTTP request pipeline.
+if (app.Environment.IsDevelopment())
+{
+ app.MapOpenApi();
+}
+
+app.MapControllers();
+
+app.UseHttpsRedirection();
+
+app.Run();
diff --git a/Atillo/StudentWebApi/Properties/launchSettings.json b/Atillo/StudentWebApi/Properties/launchSettings.json
new file mode 100644
index 0000000..b120737
--- /dev/null
+++ b/Atillo/StudentWebApi/Properties/launchSettings.json
@@ -0,0 +1,23 @@
+{
+ "$schema": "https://json.schemastore.org/launchsettings.json",
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": false,
+ "applicationUrl": "http://localhost:9090",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "https": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": false,
+ "applicationUrl": "https://localhost:7212;http://localhost:9090",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/Atillo/StudentWebApi/Services/Implementation/StudentService.cs b/Atillo/StudentWebApi/Services/Implementation/StudentService.cs
new file mode 100644
index 0000000..bfe42e2
--- /dev/null
+++ b/Atillo/StudentWebApi/Services/Implementation/StudentService.cs
@@ -0,0 +1,50 @@
+using StudentWebApi.Models;
+using Services.Interfaces;
+
+namespace StudentWebApi.Services.Implementation
+{
+ public class StudentService : IStudentService
+ {
+ private Dictionary _students = new Dictionary();
+ private long _idCounter = 1L;
+
+ public Student AddStudent(Student student)
+ {
+ if (student.StudentId == 0)
+ {
+ student.StudentId = _idCounter++;
+ }
+
+ return _students.TryAdd(student.StudentId, student) ? student : null;
+ }
+
+ public List GetAllStudents()
+ {
+ return [.. _students.Values];
+ }
+
+ public Student? GetStudentById(long id)
+ {
+ return _students.GetValueOrDefault(id);
+ }
+
+ public Student UpdateStudent(long id, Student student)
+ {
+ if (!_students.TryGetValue(id, out var studentToUpdate))
+ {
+ return null!; // Student not found
+ }
+
+ if (!string.IsNullOrEmpty(student.Name)) studentToUpdate.Name = student.Name;
+
+ if(string.IsNullOrEmpty(student.Course)) studentToUpdate.Course = student.Course;
+
+ return studentToUpdate;
+ }
+
+ public bool DeleteStudent(long id)
+ {
+ return _students.Remove(id);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/Services/Interfaces/IStudentService.cs b/Atillo/StudentWebApi/Services/Interfaces/IStudentService.cs
new file mode 100644
index 0000000..1296299
--- /dev/null
+++ b/Atillo/StudentWebApi/Services/Interfaces/IStudentService.cs
@@ -0,0 +1,13 @@
+using StudentWebApi.Models;
+
+namespace Services.Interfaces
+{
+ public interface IStudentService
+ {
+ Student AddStudent(Student student);
+ List GetAllStudents();
+ Student? GetStudentById(long id);
+ Student UpdateStudent(long id, Student student);
+ bool DeleteStudent(long id);
+ }
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/StudentWebApi.csproj b/Atillo/StudentWebApi/StudentWebApi.csproj
new file mode 100644
index 0000000..ee25c2f
--- /dev/null
+++ b/Atillo/StudentWebApi/StudentWebApi.csproj
@@ -0,0 +1,13 @@
+
+
+
+ net9.0
+ enable
+ enable
+
+
+
+
+
+
+
diff --git a/Atillo/StudentWebApi/StudentWebApi.http b/Atillo/StudentWebApi/StudentWebApi.http
new file mode 100644
index 0000000..6d37dec
--- /dev/null
+++ b/Atillo/StudentWebApi/StudentWebApi.http
@@ -0,0 +1,6 @@
+@StudentWebApi_HostAddress = http://localhost:5157
+
+GET {{StudentWebApi_HostAddress}}/weatherforecast/
+Accept: application/json
+
+###
diff --git a/Atillo/StudentWebApi/appsettings.Development.json b/Atillo/StudentWebApi/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/Atillo/StudentWebApi/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/Atillo/StudentWebApi/appsettings.json b/Atillo/StudentWebApi/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/Atillo/StudentWebApi/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll b/Atillo/StudentWebApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll
new file mode 100755
index 0000000..f5e7933
Binary files /dev/null and b/Atillo/StudentWebApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll differ
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/Microsoft.OpenApi.dll b/Atillo/StudentWebApi/bin/Debug/net9.0/Microsoft.OpenApi.dll
new file mode 100755
index 0000000..d9f09da
Binary files /dev/null and b/Atillo/StudentWebApi/bin/Debug/net9.0/Microsoft.OpenApi.dll differ
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi
new file mode 100755
index 0000000..1183d22
Binary files /dev/null and b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi differ
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.deps.json b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.deps.json
new file mode 100644
index 0000000..fca11cb
--- /dev/null
+++ b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.deps.json
@@ -0,0 +1,59 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v9.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v9.0": {
+ "StudentWebApi/1.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": "9.0.1"
+ },
+ "runtime": {
+ "StudentWebApi.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.OpenApi/9.0.1": {
+ "dependencies": {
+ "Microsoft.OpenApi": "1.6.17"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "assemblyVersion": "9.0.1.0",
+ "fileVersion": "9.0.124.61009"
+ }
+ }
+ },
+ "Microsoft.OpenApi/1.6.17": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "assemblyVersion": "1.6.17.0",
+ "fileVersion": "1.6.17.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "StudentWebApi/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.OpenApi/9.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xRJe8UrLnOGs6hOBrT/4r74q97626H0mABb/DV0smlReIx6uQCENAe+TUqF6hD3NtT4sB+qrvWhAej6kxPxgew==",
+ "path": "microsoft.aspnetcore.openapi/9.0.1",
+ "hashPath": "microsoft.aspnetcore.openapi.9.0.1.nupkg.sha512"
+ },
+ "Microsoft.OpenApi/1.6.17": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==",
+ "path": "microsoft.openapi/1.6.17",
+ "hashPath": "microsoft.openapi.1.6.17.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.dll b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.dll
new file mode 100644
index 0000000..7eaa876
Binary files /dev/null and b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.dll differ
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.pdb b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.pdb
new file mode 100644
index 0000000..d4d393f
Binary files /dev/null and b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.pdb differ
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.runtimeconfig.json b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.runtimeconfig.json
new file mode 100644
index 0000000..6925b65
--- /dev/null
+++ b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.runtimeconfig.json
@@ -0,0 +1,19 @@
+{
+ "runtimeOptions": {
+ "tfm": "net9.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "9.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "9.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.staticwebassets.endpoints.json b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.staticwebassets.endpoints.json
new file mode 100644
index 0000000..2b6c535
--- /dev/null
+++ b/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.staticwebassets.endpoints.json
@@ -0,0 +1,5 @@
+{
+ "Version": 1,
+ "ManifestType": "Build",
+ "Endpoints": []
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/appsettings.Development.json b/Atillo/StudentWebApi/bin/Debug/net9.0/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/Atillo/StudentWebApi/bin/Debug/net9.0/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/Atillo/StudentWebApi/bin/Debug/net9.0/appsettings.json b/Atillo/StudentWebApi/bin/Debug/net9.0/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/Atillo/StudentWebApi/bin/Debug/net9.0/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Atillo/StudentWebApi/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..feda5e9
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentW.D7606672.Up2Date b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentW.D7606672.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfo.cs b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfo.cs
new file mode 100644
index 0000000..6a38fc0
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("StudentWebApi")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cbd601f5da1d2c97aa3d23a02c45d9cf92f8f536")]
+[assembly: System.Reflection.AssemblyProductAttribute("StudentWebApi")]
+[assembly: System.Reflection.AssemblyTitleAttribute("StudentWebApi")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfoInputs.cache b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..04db772
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+21910804a929f77991c502154901036d8fd3e20eb06aec0d6373769c48889315
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.GeneratedMSBuildEditorConfig.editorconfig b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..7fb437e
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,21 @@
+is_global = true
+build_property.TargetFramework = net9.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = StudentWebApi
+build_property.RootNamespace = StudentWebApi
+build_property.ProjectDir = /Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 9.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = /Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi
+build_property._RazorSourceGeneratorDebug =
+build_property.EffectiveAnalysisLevelStyle = 9.0
+build_property.EnableCodeStyleSeverity =
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.GlobalUsings.g.cs b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.GlobalUsings.g.cs
new file mode 100644
index 0000000..025530a
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.GlobalUsings.g.cs
@@ -0,0 +1,17 @@
+//
+global using global::Microsoft.AspNetCore.Builder;
+global using global::Microsoft.AspNetCore.Hosting;
+global using global::Microsoft.AspNetCore.Http;
+global using global::Microsoft.AspNetCore.Routing;
+global using global::Microsoft.Extensions.Configuration;
+global using global::Microsoft.Extensions.DependencyInjection;
+global using global::Microsoft.Extensions.Hosting;
+global using global::Microsoft.Extensions.Logging;
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Net.Http.Json;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cache b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cs b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 0000000..1c3041b
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,16 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.assets.cache b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.assets.cache
new file mode 100644
index 0000000..56af914
Binary files /dev/null and b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.assets.cache differ
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.AssemblyReference.cache b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..97f27cd
Binary files /dev/null and b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.AssemblyReference.cache differ
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.CoreCompileInputs.cache b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..e67f1b5
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+b70cfa0bf8356315aef14def75e6043a9a5fa8f1b5f6daae0611699e42361dd1
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.FileListAbsolute.txt b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..91187d9
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.FileListAbsolute.txt
@@ -0,0 +1,67 @@
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/appsettings.Development.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/appsettings.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/StudentWebApi.staticwebassets.endpoints.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/StudentWebApi
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/StudentWebApi.deps.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/StudentWebApi.runtimeconfig.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/StudentWebApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/StudentWebApi.pdb
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/bin/Debug/net9.0/Microsoft.OpenApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.AssemblyReference.cache
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.GeneratedMSBuildEditorConfig.editorconfig
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfoInputs.cache
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfo.cs
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.CoreCompileInputs.cache
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cs
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cache
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/scopedcss/bundle/StudentWebApi.styles.css
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets.development.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.StudentWebApi.Microsoft.AspNetCore.StaticWebAssets.props
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.StudentWebApi.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.build.StudentWebApi.props
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.StudentWebApi.props
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.StudentWebApi.props
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/staticwebassets.pack.json
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentW.D7606672.Up2Date
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/refint/StudentWebApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.pdb
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/StudentWebApi.genruntimeconfig.cache
+/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/Debug/net9.0/ref/StudentWebApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.staticwebassets.endpoints.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/appsettings.Development.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/appsettings.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.deps.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.runtimeconfig.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/StudentWebApi.pdb
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/bin/Debug/net9.0/Microsoft.OpenApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.AssemblyReference.cache
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.GeneratedMSBuildEditorConfig.editorconfig
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfoInputs.cache
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.AssemblyInfo.cs
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.csproj.CoreCompileInputs.cache
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cs
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.MvcApplicationPartsAssemblyInfo.cache
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.sourcelink.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/scopedcss/bundle/StudentWebApi.styles.css
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.development.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.StudentWebApi.Microsoft.AspNetCore.StaticWebAssets.props
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.StudentWebApi.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.build.StudentWebApi.props
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.StudentWebApi.props
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.StudentWebApi.props
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.pack.json
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentW.D7606672.Up2Date
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/refint/StudentWebApi.dll
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.pdb
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.genruntimeconfig.cache
+/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/Debug/net9.0/ref/StudentWebApi.dll
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.dll b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.dll
new file mode 100644
index 0000000..7eaa876
Binary files /dev/null and b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.dll differ
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.genruntimeconfig.cache b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.genruntimeconfig.cache
new file mode 100644
index 0000000..e9774a4
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.genruntimeconfig.cache
@@ -0,0 +1 @@
+060f278ac6c0dd85b5f2a613ef96eb894dcb807124ae28c8a4b14a784dd1cc2e
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.pdb b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.pdb
new file mode 100644
index 0000000..d4d393f
Binary files /dev/null and b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.pdb differ
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.sourcelink.json b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.sourcelink.json
new file mode 100644
index 0000000..503118c
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/StudentWebApi.sourcelink.json
@@ -0,0 +1 @@
+{"documents":{"/Users/jcatillo/Documents/School/Proglan/ASP-API/*":"https://raw.githubusercontent.com/jcatillo/csharp-asp.net-api/cbd601f5da1d2c97aa3d23a02c45d9cf92f8f536/*"}}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/apphost b/Atillo/StudentWebApi/obj/Debug/net9.0/apphost
new file mode 100755
index 0000000..1183d22
Binary files /dev/null and b/Atillo/StudentWebApi/obj/Debug/net9.0/apphost differ
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/ref/StudentWebApi.dll b/Atillo/StudentWebApi/obj/Debug/net9.0/ref/StudentWebApi.dll
new file mode 100644
index 0000000..2b8e86a
Binary files /dev/null and b/Atillo/StudentWebApi/obj/Debug/net9.0/ref/StudentWebApi.dll differ
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/refint/StudentWebApi.dll b/Atillo/StudentWebApi/obj/Debug/net9.0/refint/StudentWebApi.dll
new file mode 100644
index 0000000..2b8e86a
Binary files /dev/null and b/Atillo/StudentWebApi/obj/Debug/net9.0/refint/StudentWebApi.dll differ
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json
new file mode 100644
index 0000000..2b6c535
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.endpoints.json
@@ -0,0 +1,5 @@
+{
+ "Version": 1,
+ "ManifestType": "Build",
+ "Endpoints": []
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.json b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.json
new file mode 100644
index 0000000..458001b
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets.build.json
@@ -0,0 +1,12 @@
+{
+ "Version": 1,
+ "Hash": "sxIeermNoQ5LKjCiVnLl+52BkHwJu2Pyo5EtC/ObtC0=",
+ "Source": "StudentWebApi",
+ "BasePath": "_content/StudentWebApi",
+ "Mode": "Default",
+ "ManifestType": "Build",
+ "ReferencedProjectsConfiguration": [],
+ "DiscoveryPatterns": [],
+ "Assets": [],
+ "Endpoints": []
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.build.StudentWebApi.props b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.build.StudentWebApi.props
new file mode 100644
index 0000000..ddaed44
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.build.StudentWebApi.props
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.StudentWebApi.props b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.StudentWebApi.props
new file mode 100644
index 0000000..914ad71
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.StudentWebApi.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.StudentWebApi.props b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.StudentWebApi.props
new file mode 100644
index 0000000..a0a75e2
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.StudentWebApi.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.dgspec.json b/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..72f8bc1
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.dgspec.json
@@ -0,0 +1,76 @@
+{
+ "format": 1,
+ "restore": {
+ "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/StudentWebApi.csproj": {}
+ },
+ "projects": {
+ "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/StudentWebApi.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/StudentWebApi.csproj",
+ "projectName": "StudentWebApi",
+ "projectPath": "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/StudentWebApi.csproj",
+ "packagesPath": "/Users/jcatillo/.nuget/packages/",
+ "outputPath": "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/Users/jcatillo/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net9.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net9.0": {
+ "targetAlias": "net9.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "frameworks": {
+ "net9.0": {
+ "targetAlias": "net9.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[9.0.1, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.g.props b/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.g.props
new file mode 100644
index 0000000..0efdb63
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /Users/jcatillo/.nuget/packages/
+ /Users/jcatillo/.nuget/packages/
+ PackageReference
+ 6.12.2
+
+
+
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.g.targets b/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/StudentWebApi.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/project.assets.json b/Atillo/StudentWebApi/obj/project.assets.json
new file mode 100644
index 0000000..51f4f0a
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/project.assets.json
@@ -0,0 +1,148 @@
+{
+ "version": 3,
+ "targets": {
+ "net9.0": {
+ "Microsoft.AspNetCore.OpenApi/9.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.OpenApi": "1.6.17"
+ },
+ "compile": {
+ "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "Microsoft.OpenApi/1.6.17": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.AspNetCore.OpenApi/9.0.1": {
+ "sha512": "xRJe8UrLnOGs6hOBrT/4r74q97626H0mABb/DV0smlReIx6uQCENAe+TUqF6hD3NtT4sB+qrvWhAej6kxPxgew==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.openapi/9.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll",
+ "lib/net9.0/Microsoft.AspNetCore.OpenApi.xml",
+ "microsoft.aspnetcore.openapi.9.0.1.nupkg.sha512",
+ "microsoft.aspnetcore.openapi.nuspec"
+ ]
+ },
+ "Microsoft.OpenApi/1.6.17": {
+ "sha512": "Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==",
+ "type": "package",
+ "path": "microsoft.openapi/1.6.17",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/netstandard2.0/Microsoft.OpenApi.dll",
+ "lib/netstandard2.0/Microsoft.OpenApi.pdb",
+ "lib/netstandard2.0/Microsoft.OpenApi.xml",
+ "microsoft.openapi.1.6.17.nupkg.sha512",
+ "microsoft.openapi.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net9.0": [
+ "Microsoft.AspNetCore.OpenApi >= 9.0.1"
+ ]
+ },
+ "packageFolders": {
+ "/Users/jcatillo/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/StudentWebApi.csproj",
+ "projectName": "StudentWebApi",
+ "projectPath": "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/StudentWebApi.csproj",
+ "packagesPath": "/Users/jcatillo/.nuget/packages/",
+ "outputPath": "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/Users/jcatillo/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net9.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net9.0": {
+ "targetAlias": "net9.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "frameworks": {
+ "net9.0": {
+ "targetAlias": "net9.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[9.0.1, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/project.nuget.cache b/Atillo/StudentWebApi/obj/project.nuget.cache
new file mode 100644
index 0000000..27c3403
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/project.nuget.cache
@@ -0,0 +1,11 @@
+{
+ "version": 2,
+ "dgSpecHash": "LKnX266p3Tc=",
+ "success": true,
+ "projectFilePath": "/Users/jcatillo/Documents/School/Proglan/ASP-API/Atillo/StudentWebApi/StudentWebApi.csproj",
+ "expectedPackageFiles": [
+ "/Users/jcatillo/.nuget/packages/microsoft.aspnetcore.openapi/9.0.1/microsoft.aspnetcore.openapi.9.0.1.nupkg.sha512",
+ "/Users/jcatillo/.nuget/packages/microsoft.openapi/1.6.17/microsoft.openapi.1.6.17.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/project.packagespec.json b/Atillo/StudentWebApi/obj/project.packagespec.json
new file mode 100644
index 0000000..f2925ec
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/project.packagespec.json
@@ -0,0 +1 @@
+"restore":{"projectUniqueName":"/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/StudentWebApi.csproj","projectName":"StudentWebApi","projectPath":"/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/StudentWebApi.csproj","outputPath":"/Users/jcatillo/Documents/School/Proglan/ASP/StudentWebApi/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.100"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[9.0.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/9.0.102/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/rider.project.model.nuget.info b/Atillo/StudentWebApi/obj/rider.project.model.nuget.info
new file mode 100644
index 0000000..afc0b75
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/rider.project.model.nuget.info
@@ -0,0 +1 @@
+17569083651578160
\ No newline at end of file
diff --git a/Atillo/StudentWebApi/obj/rider.project.restore.info b/Atillo/StudentWebApi/obj/rider.project.restore.info
new file mode 100644
index 0000000..afc0b75
--- /dev/null
+++ b/Atillo/StudentWebApi/obj/rider.project.restore.info
@@ -0,0 +1 @@
+17569083651578160
\ No newline at end of file