コード例 #1
0
 public EmployeeRepository(AppDataContextBase context) : base(context)
 {
 }
コード例 #2
0
 public RepositoryBase(AppDataContextBase context)
 {
     Context = context;
 }
コード例 #3
0
ファイル: LogicBase.cs プロジェクト: MutazShamsan/EmpEval
 public LogicBase(AppDataContextBase context)
 {
     ApplicationContext = context;
 }
コード例 #4
0
 public EmployeeEvaluationRepository(AppDataContextBase context) : base(context)
 {
 }
コード例 #5
0
 public EmployeeManagement(AppDataContextBase context) : base(context)
 {
 }
コード例 #6
0
ファイル: UnitOfWork.cs プロジェクト: MutazShamsan/EmpEval
 public UnitOfWork(AppDataContextBase context)
 {
     _context            = context;
     Employees           = new EmployeeRepository(_context);
     EmployeeEvaluations = new EmployeeEvaluationRepository(_context);
 }