namespace Harmonia.Core.Data; public interface IRepository { List Get(); void Save(TObject value); void Delete(TObject value); }