├── .gitattributes ├── .gitignore ├── MyCookingMaster.API ├── Controllers │ └── UsersController.cs ├── MyCookingMaster.API.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── MyCookingMaster.BL ├── Models │ ├── Common │ │ └── BaseEntity.cs │ ├── Enums │ │ └── RecipeDifficulty.cs │ ├── Ingredient.cs │ ├── Recipe.cs │ └── User.cs └── MyCookingMaster.BL.csproj ├── MyCookingMaster.DAL ├── ApplicationDbContext.cs ├── Data │ └── DataSeeder.cs ├── Migrations │ ├── 20190210190425_Initial.Designer.cs │ ├── 20190210190425_Initial.cs │ └── ApplicationDbContextModelSnapshot.cs └── MyCookingMaster.DAL.csproj ├── MyCookingMaster.sln └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/.gitignore -------------------------------------------------------------------------------- /MyCookingMaster.API/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.API/Controllers/UsersController.cs -------------------------------------------------------------------------------- /MyCookingMaster.API/MyCookingMaster.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.API/MyCookingMaster.API.csproj -------------------------------------------------------------------------------- /MyCookingMaster.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.API/Program.cs -------------------------------------------------------------------------------- /MyCookingMaster.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /MyCookingMaster.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.API/Startup.cs -------------------------------------------------------------------------------- /MyCookingMaster.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.API/appsettings.Development.json -------------------------------------------------------------------------------- /MyCookingMaster.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.API/appsettings.json -------------------------------------------------------------------------------- /MyCookingMaster.BL/Models/Common/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.BL/Models/Common/BaseEntity.cs -------------------------------------------------------------------------------- /MyCookingMaster.BL/Models/Enums/RecipeDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.BL/Models/Enums/RecipeDifficulty.cs -------------------------------------------------------------------------------- /MyCookingMaster.BL/Models/Ingredient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.BL/Models/Ingredient.cs -------------------------------------------------------------------------------- /MyCookingMaster.BL/Models/Recipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.BL/Models/Recipe.cs -------------------------------------------------------------------------------- /MyCookingMaster.BL/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.BL/Models/User.cs -------------------------------------------------------------------------------- /MyCookingMaster.BL/MyCookingMaster.BL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.BL/MyCookingMaster.BL.csproj -------------------------------------------------------------------------------- /MyCookingMaster.DAL/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.DAL/ApplicationDbContext.cs -------------------------------------------------------------------------------- /MyCookingMaster.DAL/Data/DataSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.DAL/Data/DataSeeder.cs -------------------------------------------------------------------------------- /MyCookingMaster.DAL/Migrations/20190210190425_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.DAL/Migrations/20190210190425_Initial.Designer.cs -------------------------------------------------------------------------------- /MyCookingMaster.DAL/Migrations/20190210190425_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.DAL/Migrations/20190210190425_Initial.cs -------------------------------------------------------------------------------- /MyCookingMaster.DAL/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.DAL/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /MyCookingMaster.DAL/MyCookingMaster.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.DAL/MyCookingMaster.DAL.csproj -------------------------------------------------------------------------------- /MyCookingMaster.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/MyCookingMaster.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rudyzio/EFCoreSeparateProject/HEAD/README.md --------------------------------------------------------------------------------