Files
GreadyPoang/Common.Library/Interfaces/IMethodSharingService.cs

10 lines
180 B
C#

using System.Collections.ObjectModel;
namespace Common.Library
{
public interface IMethodSharingService<TEntity>
{
ObservableCollection<TEntity> Get();
}
}