Exemplo n.º 1
0
 public DepartmentRepository(IManagementSystemDbContext context)
     : base(context)
 {
 }
 public EmployeeRepository(IManagementSystemDbContext context)
     : base(context)
 {
 }
Exemplo n.º 3
0
 public TeamRepository(IManagementSystemDbContext context)
     : base(context)
 {
 }
Exemplo n.º 4
0
 public GenericRepository(IManagementSystemDbContext context)
 {
     this.Context = context;
     this.Set     = context.Set <T>();
 }
 public PermissionRepository(IManagementSystemDbContext context)
     : base(context)
 {
 }
 public UnitOfWork(IManagementSystemDbContext context)
 {
     this.context      = context;
     this.repositories = new Dictionary <Type, object>();
 }
Exemplo n.º 7
0
 public CookieRepository(IManagementSystemDbContext context)
     : base(context)
 {
 }