├── .gitignore ├── Common └── MasterDataGenerator.cs ├── Controllers ├── AccountController.cs ├── BookController.cs ├── MaterController.cs └── RestErrorFilter.cs ├── LICENSE ├── Logger ├── Log4NetLogger.cs ├── Log4NetProvider.cs └── Log4netExtensions.cs ├── Models ├── Account.cs ├── AccountRole.cs ├── Book.cs ├── Category.cs ├── Dtos │ └── BookDto.cs └── Format.cs ├── Program.cs ├── README.md ├── Repositories ├── AbstractRepository.cs ├── BookRepository.cs └── PagedList.cs ├── Services ├── AccountService.cs ├── BookService.cs └── MasterService.cs ├── Startup.cs ├── appsettings.Development.json ├── appsettings.Docker.json ├── appsettings.json ├── aspdotnet_managesys.csproj ├── log4net.config └── wwwroot └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/MasterDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Common/MasterDataGenerator.cs -------------------------------------------------------------------------------- /Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Controllers/AccountController.cs -------------------------------------------------------------------------------- /Controllers/BookController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Controllers/BookController.cs -------------------------------------------------------------------------------- /Controllers/MaterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Controllers/MaterController.cs -------------------------------------------------------------------------------- /Controllers/RestErrorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Controllers/RestErrorFilter.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/LICENSE -------------------------------------------------------------------------------- /Logger/Log4NetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Logger/Log4NetLogger.cs -------------------------------------------------------------------------------- /Logger/Log4NetProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Logger/Log4NetProvider.cs -------------------------------------------------------------------------------- /Logger/Log4netExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Logger/Log4netExtensions.cs -------------------------------------------------------------------------------- /Models/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Models/Account.cs -------------------------------------------------------------------------------- /Models/AccountRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Models/AccountRole.cs -------------------------------------------------------------------------------- /Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Models/Book.cs -------------------------------------------------------------------------------- /Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Models/Category.cs -------------------------------------------------------------------------------- /Models/Dtos/BookDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Models/Dtos/BookDto.cs -------------------------------------------------------------------------------- /Models/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Models/Format.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/README.md -------------------------------------------------------------------------------- /Repositories/AbstractRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Repositories/AbstractRepository.cs -------------------------------------------------------------------------------- /Repositories/BookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Repositories/BookRepository.cs -------------------------------------------------------------------------------- /Repositories/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Repositories/PagedList.cs -------------------------------------------------------------------------------- /Services/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Services/AccountService.cs -------------------------------------------------------------------------------- /Services/BookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Services/BookService.cs -------------------------------------------------------------------------------- /Services/MasterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Services/MasterService.cs -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/Startup.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.Docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/appsettings.Docker.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/appsettings.json -------------------------------------------------------------------------------- /aspdotnet_managesys.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/aspdotnet_managesys.csproj -------------------------------------------------------------------------------- /log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/c-test-app/HEAD/log4net.config -------------------------------------------------------------------------------- /wwwroot/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------