using System.Collections.ObjectModel; namespace Common.Library; public interface IRepository { ObservableCollection Get(); TEntity? Get(int id); }