protected override void Dispose(bool disposing) { if (disposing) { context.Dispose(); context = null; } base.Dispose(disposing); }
public RoleController() { context = new GarmentContext(); }
public TeamRepository(GarmentContext context) { _context = context; }
public TeamRepository() { _context = new GarmentContext(); }
public GoalRepository(GarmentContext context) { _context = context; }
public GoalRepository() { _context = new GarmentContext(); }
public LatestSummaryRepository(GarmentContext context) { _context = context; }
public LatestSummaryRepository() { _context = new GarmentContext(); }
public ProduceHistoryRepository() { _context = new GarmentContext(); }
public ProduceHistoryRepository(GarmentContext context) { _context = context; }
public AccountController() { context = new GarmentContext(); }
public EmployeeRepository() { _context = new GarmentContext(); }
public EmployeeRepository(GarmentContext context) { _context = context; }