├── .gitattributes ├── .gitignore ├── Business ├── Abstracts │ └── IBrandService.cs ├── Business.csproj ├── Concretes │ └── BrandManager.cs └── Dtos │ ├── Requests │ └── CreateBrandRequest.cs │ └── Responses │ ├── CreatedBrandResponse.cs │ └── GetAllBrandResponse.cs ├── Core ├── Core.csproj └── Entities │ └── BaseEntity.cs ├── DataAccess ├── Abstracts │ └── IBrandDal.cs ├── Concretes │ └── BrandDal.cs └── DataAccess.csproj ├── Entities ├── Concretes │ └── Brand.cs └── Entities.csproj ├── WebApi.sln └── WebApi ├── Controllers └── BrandsController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── WebApi.csproj ├── WebApi.http ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/.gitignore -------------------------------------------------------------------------------- /Business/Abstracts/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Business/Abstracts/IBrandService.cs -------------------------------------------------------------------------------- /Business/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Business/Business.csproj -------------------------------------------------------------------------------- /Business/Concretes/BrandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Business/Concretes/BrandManager.cs -------------------------------------------------------------------------------- /Business/Dtos/Requests/CreateBrandRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Business/Dtos/Requests/CreateBrandRequest.cs -------------------------------------------------------------------------------- /Business/Dtos/Responses/CreatedBrandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Business/Dtos/Responses/CreatedBrandResponse.cs -------------------------------------------------------------------------------- /Business/Dtos/Responses/GetAllBrandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Business/Dtos/Responses/GetAllBrandResponse.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/Entities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Core/Entities/BaseEntity.cs -------------------------------------------------------------------------------- /DataAccess/Abstracts/IBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/DataAccess/Abstracts/IBrandDal.cs -------------------------------------------------------------------------------- /DataAccess/Concretes/BrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/DataAccess/Concretes/BrandDal.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /Entities/Concretes/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Entities/Concretes/Brand.cs -------------------------------------------------------------------------------- /Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/Entities/Entities.csproj -------------------------------------------------------------------------------- /WebApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/WebApi.sln -------------------------------------------------------------------------------- /WebApi/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/WebApi/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/WebApi/Program.cs -------------------------------------------------------------------------------- /WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebApi/WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/WebApi/WebApi.csproj -------------------------------------------------------------------------------- /WebApi/WebApi.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/WebApi/WebApi.http -------------------------------------------------------------------------------- /WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engindemirog/WebApi/HEAD/WebApi/appsettings.json --------------------------------------------------------------------------------