├── .gitattributes ├── .gitignore ├── RepositoryAndUnitOfWork.DataAccess ├── App.config ├── Customer.cs ├── CustomerDataModel.Context.cs ├── CustomerDataModel.Context.tt ├── CustomerDataModel.Designer.cs ├── CustomerDataModel.cs ├── CustomerDataModel.edmx ├── CustomerDataModel.edmx.diagram ├── CustomerDataModel.tt ├── Database │ ├── CustomerDb.mdf │ └── CustomerDb_log.ldf ├── Properties │ └── AssemblyInfo.cs ├── Repositories │ ├── ICustomerRepository.cs │ ├── IRepository.cs │ └── IUnitOfWork.cs ├── RepositoryAndUnitOfWork.DataAccess.csproj └── packages.config ├── RepositoryAndUnitOfWork.sln └── RepositoryAndUnitOfWork ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Repositories ├── CustomerRepository.cs ├── Repository.cs └── UnitOfWork.cs ├── RepositoryAndUnitOfWork.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/.gitignore -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/App.config -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/Customer.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.Context.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.Context.tt -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.Designer.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.edmx -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.edmx.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.edmx.diagram -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/CustomerDataModel.tt -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/Database/CustomerDb.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/Database/CustomerDb.mdf -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/Database/CustomerDb_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/Database/CustomerDb_log.ldf -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/Repositories/ICustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/Repositories/ICustomerRepository.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/Repositories/IRepository.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/Repositories/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/Repositories/IUnitOfWork.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/RepositoryAndUnitOfWork.DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/RepositoryAndUnitOfWork.DataAccess.csproj -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.DataAccess/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.DataAccess/packages.config -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork.sln -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork/App.config -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork/Program.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork/Repositories/CustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork/Repositories/CustomerRepository.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork/Repositories/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork/Repositories/Repository.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork/Repositories/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork/Repositories/UnitOfWork.cs -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork/RepositoryAndUnitOfWork.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork/RepositoryAndUnitOfWork.csproj -------------------------------------------------------------------------------- /RepositoryAndUnitOfWork/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangOfner/RepositoryAndUnitOfWorkPattern/HEAD/RepositoryAndUnitOfWork/packages.config --------------------------------------------------------------------------------