├── .gitattributes ├── .gitignore ├── IMDb-Project.DataAccessLayer ├── App.config ├── Context │ └── ProjectContext.cs ├── IMDb-Project.DataAccessLayer.csproj ├── Migrations │ └── Configuration.cs ├── Properties │ └── AssemblyInfo.cs ├── Repositories │ ├── Concrete │ │ ├── EfAppUserRepository.cs │ │ ├── EfBaseRepository.cs │ │ ├── EfGenreRepository.cs │ │ └── EfMovieRepository.cs │ └── Interfaces │ │ ├── IAppUserRepository.cs │ │ ├── IBaseRepository.cs │ │ ├── IGenreRepository.cs │ │ └── IMovieRepository.cs └── packages.config ├── IMDb-Project.EntityLayer ├── App.config ├── Entities │ ├── Abstract │ │ └── BaseEntity.cs │ └── Concrete │ │ ├── AppUser.cs │ │ ├── Genre.cs │ │ └── Movie.cs ├── Enums │ ├── Role.cs │ └── Status.cs ├── IMDb-Project.EntityLayer.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── IMDb-Project.UI ├── Admin │ ├── AdminAppUserPage.Designer.cs │ ├── AdminAppUserPage.cs │ ├── AdminAppUserPage.resx │ ├── AdminGenrePage.Designer.cs │ ├── AdminGenrePage.cs │ ├── AdminGenrePage.resx │ ├── AdminMoviePage.Designer.cs │ ├── AdminMoviePage.cs │ └── AdminMoviePage.resx ├── App.config ├── IMDb-Project.UI.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config └── IMDb-Project.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/.gitignore -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/App.config -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Context/ProjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Context/ProjectContext.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/IMDb-Project.DataAccessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/IMDb-Project.DataAccessLayer.csproj -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Migrations/Configuration.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Repositories/Concrete/EfAppUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Repositories/Concrete/EfAppUserRepository.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Repositories/Concrete/EfBaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Repositories/Concrete/EfBaseRepository.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Repositories/Concrete/EfGenreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Repositories/Concrete/EfGenreRepository.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Repositories/Concrete/EfMovieRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Repositories/Concrete/EfMovieRepository.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Repositories/Interfaces/IAppUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Repositories/Interfaces/IAppUserRepository.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Repositories/Interfaces/IBaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Repositories/Interfaces/IBaseRepository.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Repositories/Interfaces/IGenreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Repositories/Interfaces/IGenreRepository.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/Repositories/Interfaces/IMovieRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/Repositories/Interfaces/IMovieRepository.cs -------------------------------------------------------------------------------- /IMDb-Project.DataAccessLayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.DataAccessLayer/packages.config -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/App.config -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/Entities/Abstract/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/Entities/Abstract/BaseEntity.cs -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/Entities/Concrete/AppUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/Entities/Concrete/AppUser.cs -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/Entities/Concrete/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/Entities/Concrete/Genre.cs -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/Entities/Concrete/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/Entities/Concrete/Movie.cs -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/Enums/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/Enums/Role.cs -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/Enums/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/Enums/Status.cs -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/IMDb-Project.EntityLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/IMDb-Project.EntityLayer.csproj -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IMDb-Project.EntityLayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.EntityLayer/packages.config -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminAppUserPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminAppUserPage.Designer.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminAppUserPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminAppUserPage.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminAppUserPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminAppUserPage.resx -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminGenrePage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminGenrePage.Designer.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminGenrePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminGenrePage.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminGenrePage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminGenrePage.resx -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminMoviePage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminMoviePage.Designer.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminMoviePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminMoviePage.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Admin/AdminMoviePage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Admin/AdminMoviePage.resx -------------------------------------------------------------------------------- /IMDb-Project.UI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/App.config -------------------------------------------------------------------------------- /IMDb-Project.UI/IMDb-Project.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/IMDb-Project.UI.csproj -------------------------------------------------------------------------------- /IMDb-Project.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Program.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Properties/Resources.resx -------------------------------------------------------------------------------- /IMDb-Project.UI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /IMDb-Project.UI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/Properties/Settings.settings -------------------------------------------------------------------------------- /IMDb-Project.UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.UI/packages.config -------------------------------------------------------------------------------- /IMDb-Project.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihatcanertug/IMDb-Project/HEAD/IMDb-Project.sln --------------------------------------------------------------------------------