PageRenderTime 53ms CodeModel.GetById 25ms RepoModel.GetById 1ms app.codeStats 0ms

/Plugins/GizmoBeach.Components/DataObjects/EntityFrameworkDbContextRepositoryOrmFramework.cs

http://github.com/kahanu/CondorXE
C# | 20 lines | 16 code | 4 blank | 0 comment | 0 complexity | 0e6ff238131051b4c0ed60f26a71ea6f MD5 | raw file
  1. using System;
  2. using System.Linq;
  3. using Condor.Core;
  4. using Condor.Core.Interfaces;
  5. namespace GizmoBeach.Components.DataObjects
  6. {
  7. public class EntityFrameworkDbContextRepositoryOrmFramework : EntityFrameworkDbContextRepositoryOrmFrameworkBase
  8. {
  9. #region ctors
  10. public EntityFrameworkDbContextRepositoryOrmFramework(IDataStore dataStore, RequestContext context)
  11. :base(dataStore, context)
  12. {
  13. }
  14. #endregion
  15. }
  16. }