public AbstractJsonRepository(IJsonFileDataStoreOpts opts) { _opts = opts; _store = Path.Combine($"{ _opts.StorePath}", $"{this.GetType().Name}.datastore.json"); Refresh(); }
public MockEmployeeRepository(IJsonFileDataStoreOpts opts) : base(opts) { }