public void CleanUp() { _repo = null; _context.Dispose(); }
public BaseController(ISiswaRepository _repository) { this.repository = _repository; }
public void Init() { _log = LogManager.GetLogger(typeof(SiswaRepositoryUnitTest)); _context = new SQLiteContext(); _repo = new SiswaRepository(_context, _log); }