10 lines
180 B
C#
10 lines
180 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Common.Library
|
|
{
|
|
public interface IMethodSharingService<TEntity>
|
|
{
|
|
ObservableCollection<TEntity> Get();
|
|
}
|
|
}
|