├── .gitattributes ├── .gitignore ├── API ├── API.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── CoffeeShopper.sln ├── DataAccess ├── Data │ └── ApplicationDbContext.cs ├── DataAccess.csproj ├── Entities │ └── CoffeeShop.cs └── Migrations │ ├── 20220104074353_InitialAppDbContextMigration.Designer.cs │ ├── 20220104074353_InitialAppDbContextMigration.cs │ └── ApplicationDbContextModelSnapshot.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/.gitignore -------------------------------------------------------------------------------- /API/API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/API/API.csproj -------------------------------------------------------------------------------- /API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/API/Program.cs -------------------------------------------------------------------------------- /API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/API/Properties/launchSettings.json -------------------------------------------------------------------------------- /API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/API/appsettings.Development.json -------------------------------------------------------------------------------- /API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/API/appsettings.json -------------------------------------------------------------------------------- /CoffeeShopper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/CoffeeShopper.sln -------------------------------------------------------------------------------- /DataAccess/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/DataAccess/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /DataAccess/Entities/CoffeeShop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/DataAccess/Entities/CoffeeShop.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/20220104074353_InitialAppDbContextMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/DataAccess/Migrations/20220104074353_InitialAppDbContextMigration.Designer.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/20220104074353_InitialAppDbContextMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/DataAccess/Migrations/20220104074353_InitialAppDbContextMigration.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/DataAccess/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CoffeeShopper-IdentityServer/HEAD/README.md --------------------------------------------------------------------------------