├── .dockerignore ├── .gitattributes ├── .gitignore ├── GPTOpenAIwithDotNetAspireAPIs ├── CommandHandlers │ ├── GenerateTokenCommandHandler.cs │ └── OpenAICommandHandler.cs ├── Commands │ ├── GenerateTokenCommand.cs │ ├── OpenAICompletionCommand.cs │ └── OpenAIFileProcessingCommand.cs ├── Controllers │ ├── AuthController.cs │ └── OpenAIController.cs ├── GPTOpenAIwithDotNetAspireAPIs.csproj ├── GPTOpenAIwithDotNetAspireAPIs.http ├── Models │ ├── OpenAIRequestModel.cs │ └── OpenAIResponseModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── appsettings.json ├── LICENSE.txt ├── MVCwithMediatRandCQRS ├── CommandHandlers │ └── UtenteCommandHandler.cs ├── Controllers │ ├── ErrorController.cs │ └── HomeController.cs ├── DbModels │ ├── MyDbContext.cs │ └── Utenti.cs ├── Handlers │ └── NotificationHandler.cs ├── MVCwithMediatRandCQRS.csproj ├── Middlewares │ └── ErrorMiddleware.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── QueryHandlers │ └── UtenteQueryHandler.cs ├── ViewModels │ ├── ErrorViewModel.cs │ └── UtenteViewModel.cs ├── Views │ ├── Error │ │ └── Index.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ └── dist │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map ├── MinimalAPIs.AppHost ├── AppHost.cs ├── MinimalAPIs.AppHost.csproj ├── Properties │ └── launchSettings.json └── appsettings.json ├── MinimalAPIs.ServiceDefaults ├── Extensions.cs └── MinimalAPIs.ServiceDefaults.csproj ├── MinimalAPIs.sln ├── MinimalAPIs ├── Dockerfile ├── Endpoints │ ├── CustomerEndpoint.cs │ └── MyEndpoint.cs ├── Filters │ └── HangfireAuthorizationFilter.cs ├── Handlers │ ├── CommandHandlers │ │ └── CustomerCommandHandler.cs │ ├── QueryHandlers │ │ ├── CustomerQueryHandler.cs │ │ └── MyRequestHandler.cs │ ├── SecurityHandlers │ │ └── AuthorizationHandler.cs │ └── ServiceHandlers │ │ ├── CompressingHandler.cs │ │ ├── NotificationHandler.cs │ │ └── TokenHandler.cs ├── MinimalAPIs.csproj ├── Models │ ├── API │ │ ├── CustomerAPI.cs │ │ └── WetherForecastAPI.cs │ └── DB │ │ ├── MinimalApisDbContext.cs │ │ └── Nlog.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── MyCompressingService.cs │ └── MyTokenService.cs ├── appsettings.Development.json ├── appsettings.Staging.json └── appsettings.json ├── MinimalSPAwithAPIs.Test ├── AppFixture.cs ├── Contents │ └── fakeAppSettings.json ├── ControllersTests │ └── ControllersTest.cs ├── MinimalSPAwithAPIs.Test.csproj ├── ModelsTests │ └── ModelsTests.cs └── PagesTests │ └── ErrorTests.cs ├── MinimalSPAwithAPIs ├── Behaviors │ ├── NotificationBehavior.cs │ └── ValidatorBehavior.cs ├── CRSAPiattaformaERM.sln ├── Controllers │ └── MyFirstApiController.cs ├── Extensions │ ├── MappingProfileExtensions.cs │ ├── QueryableExtensions.cs │ └── ServiceCollectionExtensions.cs ├── Handlers │ ├── CommandHandlers │ │ └── MyFirstApiCommandHandler.cs │ ├── QueryHandlers │ │ └── MyFirstApiQueryHandler.cs │ └── SecurityHandlers │ │ ├── AuthorizationHandler.cs │ │ └── IdmAuthenticationHandler.cs ├── Middlewares │ └── ErrorMiddleware.cs ├── MinimalSPAwithAPIs.csproj ├── Models │ ├── DB │ │ ├── MyDbContext.cs │ │ ├── MyFirstApiDbTable.cs │ │ └── MyUsersDbTable.cs │ ├── DTO │ │ ├── MyFirstApiDTO.cs │ │ └── MyUsersDTO.cs │ └── Filters │ │ ├── Filter.cs │ │ ├── MyFirstApiFilter.cs │ │ ├── MyUsersFilter.cs │ │ └── PagedResponse.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── ReactApp │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.js │ ├── aspnetcore-react.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── AppRoutes.js │ │ ├── Assets │ │ ├── css │ │ │ └── custom.css │ │ └── img │ │ │ ├── logo-my-mobile.svg │ │ │ ├── logo-my-sticky.svg │ │ │ ├── logo-my-white.svg │ │ │ ├── logo-my.svg │ │ │ └── logo-repubblica.svg │ │ ├── Layout.js │ │ ├── Services │ │ ├── MappaturaProcessi │ │ │ └── mappaturaProcessiServices.jsx │ │ ├── TempisticaCampagna │ │ │ ├── index.js │ │ │ └── validitaCampagnaServices.jsx │ │ ├── TempisticaProcessi │ │ │ ├── index.js │ │ │ └── tempisticaProcessiServices.jsx │ │ ├── auth.service.jsx │ │ ├── axios.model.jsx │ │ └── prototipoService.js │ │ ├── components │ │ ├── card │ │ │ └── cardHome.jsx │ │ ├── common │ │ │ ├── BarraRicerca.jsx │ │ │ └── BreadCrumb.jsx │ │ ├── footer │ │ │ └── Footer.jsx │ │ ├── header │ │ │ └── Header.jsx │ │ └── modale │ │ │ ├── modaleDefinizioniTempistiche.jsx │ │ │ └── modaleValiditaCampagna.jsx │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ ├── setupProxy.js │ │ ├── utils │ │ ├── dateUtils.js │ │ └── index.js │ │ └── view │ │ ├── DefinizioneTempistiche │ │ ├── DefinizioneTempistiche.jsx │ │ ├── tempisticaProcessi.jsx │ │ └── validitaCampagna.jsx │ │ ├── Home.jsx │ │ ├── MappaturaProcessi │ │ └── mappaturaProcessi.jsx │ │ ├── tempisticaProcessi.jsx │ │ └── validitaCampagna.jsx ├── Validators │ └── MyFirstApiValidator.cs ├── appsettings.json └── package-lock.json └── README.md /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/CommandHandlers/GenerateTokenCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/CommandHandlers/GenerateTokenCommandHandler.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/CommandHandlers/OpenAICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/CommandHandlers/OpenAICommandHandler.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Commands/GenerateTokenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Commands/GenerateTokenCommand.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Commands/OpenAICompletionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Commands/OpenAICompletionCommand.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Commands/OpenAIFileProcessingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Commands/OpenAIFileProcessingCommand.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Controllers/AuthController.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Controllers/OpenAIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Controllers/OpenAIController.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/GPTOpenAIwithDotNetAspireAPIs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/GPTOpenAIwithDotNetAspireAPIs.csproj -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/GPTOpenAIwithDotNetAspireAPIs.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/GPTOpenAIwithDotNetAspireAPIs.http -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Models/OpenAIRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Models/OpenAIRequestModel.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Models/OpenAIResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Models/OpenAIResponseModel.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Program.cs -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/Properties/launchSettings.json -------------------------------------------------------------------------------- /GPTOpenAIwithDotNetAspireAPIs/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/GPTOpenAIwithDotNetAspireAPIs/appsettings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/CommandHandlers/UtenteCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/CommandHandlers/UtenteCommandHandler.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Controllers/ErrorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Controllers/ErrorController.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Controllers/HomeController.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/DbModels/MyDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/DbModels/MyDbContext.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/DbModels/Utenti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/DbModels/Utenti.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Handlers/NotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Handlers/NotificationHandler.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/MVCwithMediatRandCQRS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/MVCwithMediatRandCQRS.csproj -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Middlewares/ErrorMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Middlewares/ErrorMiddleware.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Program.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Properties/launchSettings.json -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/QueryHandlers/UtenteQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/QueryHandlers/UtenteQueryHandler.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/ViewModels/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/ViewModels/ErrorViewModel.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/ViewModels/UtenteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/ViewModels/UtenteViewModel.cs -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/Error/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/Error/Index.cshtml -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/appsettings.Development.json -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/appsettings.json -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/css/site.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/favicon.ico -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/js/site.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MVCwithMediatRandCQRS/wwwroot/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /MinimalAPIs.AppHost/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs.AppHost/AppHost.cs -------------------------------------------------------------------------------- /MinimalAPIs.AppHost/MinimalAPIs.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs.AppHost/MinimalAPIs.AppHost.csproj -------------------------------------------------------------------------------- /MinimalAPIs.AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs.AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /MinimalAPIs.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs.AppHost/appsettings.json -------------------------------------------------------------------------------- /MinimalAPIs.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /MinimalAPIs.ServiceDefaults/MinimalAPIs.ServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs.ServiceDefaults/MinimalAPIs.ServiceDefaults.csproj -------------------------------------------------------------------------------- /MinimalAPIs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs.sln -------------------------------------------------------------------------------- /MinimalAPIs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Dockerfile -------------------------------------------------------------------------------- /MinimalAPIs/Endpoints/CustomerEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Endpoints/CustomerEndpoint.cs -------------------------------------------------------------------------------- /MinimalAPIs/Endpoints/MyEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Endpoints/MyEndpoint.cs -------------------------------------------------------------------------------- /MinimalAPIs/Filters/HangfireAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Filters/HangfireAuthorizationFilter.cs -------------------------------------------------------------------------------- /MinimalAPIs/Handlers/CommandHandlers/CustomerCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Handlers/CommandHandlers/CustomerCommandHandler.cs -------------------------------------------------------------------------------- /MinimalAPIs/Handlers/QueryHandlers/CustomerQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Handlers/QueryHandlers/CustomerQueryHandler.cs -------------------------------------------------------------------------------- /MinimalAPIs/Handlers/QueryHandlers/MyRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Handlers/QueryHandlers/MyRequestHandler.cs -------------------------------------------------------------------------------- /MinimalAPIs/Handlers/SecurityHandlers/AuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Handlers/SecurityHandlers/AuthorizationHandler.cs -------------------------------------------------------------------------------- /MinimalAPIs/Handlers/ServiceHandlers/CompressingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Handlers/ServiceHandlers/CompressingHandler.cs -------------------------------------------------------------------------------- /MinimalAPIs/Handlers/ServiceHandlers/NotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Handlers/ServiceHandlers/NotificationHandler.cs -------------------------------------------------------------------------------- /MinimalAPIs/Handlers/ServiceHandlers/TokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Handlers/ServiceHandlers/TokenHandler.cs -------------------------------------------------------------------------------- /MinimalAPIs/MinimalAPIs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/MinimalAPIs.csproj -------------------------------------------------------------------------------- /MinimalAPIs/Models/API/CustomerAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Models/API/CustomerAPI.cs -------------------------------------------------------------------------------- /MinimalAPIs/Models/API/WetherForecastAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Models/API/WetherForecastAPI.cs -------------------------------------------------------------------------------- /MinimalAPIs/Models/DB/MinimalApisDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Models/DB/MinimalApisDbContext.cs -------------------------------------------------------------------------------- /MinimalAPIs/Models/DB/Nlog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Models/DB/Nlog.cs -------------------------------------------------------------------------------- /MinimalAPIs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Program.cs -------------------------------------------------------------------------------- /MinimalAPIs/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Properties/launchSettings.json -------------------------------------------------------------------------------- /MinimalAPIs/Services/MyCompressingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Services/MyCompressingService.cs -------------------------------------------------------------------------------- /MinimalAPIs/Services/MyTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/Services/MyTokenService.cs -------------------------------------------------------------------------------- /MinimalAPIs/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/appsettings.Development.json -------------------------------------------------------------------------------- /MinimalAPIs/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/appsettings.Staging.json -------------------------------------------------------------------------------- /MinimalAPIs/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalAPIs/appsettings.json -------------------------------------------------------------------------------- /MinimalSPAwithAPIs.Test/AppFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs.Test/AppFixture.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs.Test/Contents/fakeAppSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs.Test/Contents/fakeAppSettings.json -------------------------------------------------------------------------------- /MinimalSPAwithAPIs.Test/ControllersTests/ControllersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs.Test/ControllersTests/ControllersTest.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs.Test/MinimalSPAwithAPIs.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs.Test/MinimalSPAwithAPIs.Test.csproj -------------------------------------------------------------------------------- /MinimalSPAwithAPIs.Test/ModelsTests/ModelsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs.Test/ModelsTests/ModelsTests.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs.Test/PagesTests/ErrorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs.Test/PagesTests/ErrorTests.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Behaviors/NotificationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Behaviors/NotificationBehavior.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Behaviors/ValidatorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Behaviors/ValidatorBehavior.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/CRSAPiattaformaERM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/CRSAPiattaformaERM.sln -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Controllers/MyFirstApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Controllers/MyFirstApiController.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Extensions/MappingProfileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Extensions/MappingProfileExtensions.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Extensions/QueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Extensions/QueryableExtensions.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Handlers/CommandHandlers/MyFirstApiCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Handlers/CommandHandlers/MyFirstApiCommandHandler.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Handlers/QueryHandlers/MyFirstApiQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Handlers/QueryHandlers/MyFirstApiQueryHandler.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Handlers/SecurityHandlers/AuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Handlers/SecurityHandlers/AuthorizationHandler.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Handlers/SecurityHandlers/IdmAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Handlers/SecurityHandlers/IdmAuthenticationHandler.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Middlewares/ErrorMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Middlewares/ErrorMiddleware.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/MinimalSPAwithAPIs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/MinimalSPAwithAPIs.csproj -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/DB/MyDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/DB/MyDbContext.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/DB/MyFirstApiDbTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/DB/MyFirstApiDbTable.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/DB/MyUsersDbTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/DB/MyUsersDbTable.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/DTO/MyFirstApiDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/DTO/MyFirstApiDTO.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/DTO/MyUsersDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/DTO/MyUsersDTO.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/Filters/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/Filters/Filter.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/Filters/MyFirstApiFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/Filters/MyFirstApiFilter.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/Filters/MyUsersFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/Filters/MyUsersFilter.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Models/Filters/PagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Models/Filters/PagedResponse.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Pages/Error.cshtml -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Program.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Properties/launchSettings.json -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/.gitignore -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/README.md -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/aspnetcore-https.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/aspnetcore-react.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/package-lock.json -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/package.json -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/public/favicon.ico -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/public/index.html -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/public/manifest.json -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/App.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/App.test.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/AppRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/AppRoutes.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Assets/css/custom.css -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-my-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-my-mobile.svg -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-my-sticky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-my-sticky.svg -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-my-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-my-white.svg -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-my.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-my.svg -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-repubblica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Assets/img/logo-repubblica.svg -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Layout.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Services/MappaturaProcessi/mappaturaProcessiServices.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Services/TempisticaCampagna/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Services/TempisticaCampagna/index.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Services/TempisticaCampagna/validitaCampagnaServices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Services/TempisticaCampagna/validitaCampagnaServices.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Services/TempisticaProcessi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Services/TempisticaProcessi/index.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Services/TempisticaProcessi/tempisticaProcessiServices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Services/TempisticaProcessi/tempisticaProcessiServices.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Services/auth.service.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Services/auth.service.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Services/axios.model.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Services/axios.model.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/Services/prototipoService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/Services/prototipoService.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/components/card/cardHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/components/card/cardHome.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/components/common/BarraRicerca.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/components/common/BarraRicerca.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/components/common/BreadCrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/components/common/BreadCrumb.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/components/footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/components/footer/Footer.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/components/header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/components/header/Header.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/components/modale/modaleDefinizioniTempistiche.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/components/modale/modaleDefinizioniTempistiche.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/components/modale/modaleValiditaCampagna.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/components/modale/modaleValiditaCampagna.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/index.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/service-worker.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/setupProxy.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/utils/dateUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/utils/dateUtils.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/utils/index.js -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/view/DefinizioneTempistiche/DefinizioneTempistiche.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/view/DefinizioneTempistiche/DefinizioneTempistiche.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/view/DefinizioneTempistiche/tempisticaProcessi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/view/DefinizioneTempistiche/tempisticaProcessi.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/view/DefinizioneTempistiche/validitaCampagna.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/view/DefinizioneTempistiche/validitaCampagna.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/view/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/view/Home.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/view/MappaturaProcessi/mappaturaProcessi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/view/MappaturaProcessi/mappaturaProcessi.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/view/tempisticaProcessi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/view/tempisticaProcessi.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/ReactApp/src/view/validitaCampagna.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/ReactApp/src/view/validitaCampagna.jsx -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/Validators/MyFirstApiValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/Validators/MyFirstApiValidator.cs -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/appsettings.json -------------------------------------------------------------------------------- /MinimalSPAwithAPIs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/MinimalSPAwithAPIs/package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoFalconi/MinimalAPIsTemplate/HEAD/README.md --------------------------------------------------------------------------------