public void Dispose(SoftuniStoreContext context) { if (context != null) { context.Dispose(); context = null; } }
public SoftuniStoreData(SoftuniStoreContext context) { this.context = context; this.repositories = new Dictionary <Type, object>(); }
public Repository(SoftuniStoreContext context) { this.context = context; this.set = context.Set <T>(); }