using Newsbot.Collector.Domain.Entities; namespace Newsbot.Collector.Domain.Interfaces; public interface IAuthorTable { AuthorEntity New(AuthorEntity entity); List ListBySourceId(Guid sourceId); int TotalPosts(Guid id); AuthorEntity? GetBySourceIdAndName(Guid sourceId, string name); }