public EfUnitOfWork(ProjectContextApi _projectContext)
 {
     projectContext = _projectContext ?? throw new ArgumentNullException("dbcontext can not be null");
 }
 public EfGenericRepository(ProjectContextApi ctx)
 {
     context = ctx;
 }
Beispiel #3
0
 public EfJobRepository(ProjectContextApi context) : base(context)
 {
 }