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