11 lines
253 B
C#
11 lines
253 B
C#
using Newsbot.Collector.Domain.Entities;
|
|
|
|
namespace Newsbot.Collector.Domain.Interfaces;
|
|
|
|
public interface IIconsRepository
|
|
{
|
|
public void New(IconEntity model);
|
|
|
|
public IconEntity GetById(Guid id);
|
|
public IconEntity GetBySourceId(Guid id);
|
|
} |