├── .gitattributes ├── .gitignore ├── ImageManipulation.API ├── Controllers │ ├── ProductController.cs │ └── WeatherForecastController.cs ├── ImageManipulation.API.csproj ├── ImageManipulation.API.http ├── Program.cs ├── Properties │ └── launchSettings.json ├── Uploads │ ├── 8e7347a3-2df3-453c-bd57-0da68a726561.jpg │ └── f802573d-fef0-425f-b6cd-12095bc23de8.png ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json ├── ImageManipulation.Data ├── ImageManipulation.Data.csproj ├── Migrations │ ├── 20240412112625_initialCreate.Designer.cs │ ├── 20240412112625_initialCreate.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Models │ ├── ApplicationDbContext.cs │ ├── DTO │ │ └── ProductDTO.cs │ └── Product.cs ├── Repositories │ └── ProductRepository.cs └── Services │ └── FileService.cs ├── ImageManipulation.sln ├── LICENSE.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/.gitignore -------------------------------------------------------------------------------- /ImageManipulation.API/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/Controllers/ProductController.cs -------------------------------------------------------------------------------- /ImageManipulation.API/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /ImageManipulation.API/ImageManipulation.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/ImageManipulation.API.csproj -------------------------------------------------------------------------------- /ImageManipulation.API/ImageManipulation.API.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/ImageManipulation.API.http -------------------------------------------------------------------------------- /ImageManipulation.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/Program.cs -------------------------------------------------------------------------------- /ImageManipulation.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /ImageManipulation.API/Uploads/8e7347a3-2df3-453c-bd57-0da68a726561.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/Uploads/8e7347a3-2df3-453c-bd57-0da68a726561.jpg -------------------------------------------------------------------------------- /ImageManipulation.API/Uploads/f802573d-fef0-425f-b6cd-12095bc23de8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/Uploads/f802573d-fef0-425f-b6cd-12095bc23de8.png -------------------------------------------------------------------------------- /ImageManipulation.API/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/WeatherForecast.cs -------------------------------------------------------------------------------- /ImageManipulation.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/appsettings.Development.json -------------------------------------------------------------------------------- /ImageManipulation.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.API/appsettings.json -------------------------------------------------------------------------------- /ImageManipulation.Data/ImageManipulation.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/ImageManipulation.Data.csproj -------------------------------------------------------------------------------- /ImageManipulation.Data/Migrations/20240412112625_initialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/Migrations/20240412112625_initialCreate.Designer.cs -------------------------------------------------------------------------------- /ImageManipulation.Data/Migrations/20240412112625_initialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/Migrations/20240412112625_initialCreate.cs -------------------------------------------------------------------------------- /ImageManipulation.Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /ImageManipulation.Data/Models/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/Models/ApplicationDbContext.cs -------------------------------------------------------------------------------- /ImageManipulation.Data/Models/DTO/ProductDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/Models/DTO/ProductDTO.cs -------------------------------------------------------------------------------- /ImageManipulation.Data/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/Models/Product.cs -------------------------------------------------------------------------------- /ImageManipulation.Data/Repositories/ProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/Repositories/ProductRepository.cs -------------------------------------------------------------------------------- /ImageManipulation.Data/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.Data/Services/FileService.cs -------------------------------------------------------------------------------- /ImageManipulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/ImageManipulation.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/ImageManipulation_APIs_DotNetCore/HEAD/README.md --------------------------------------------------------------------------------