ILivesSubscribersRepository.cs
429 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ControlPanel.Models;
namespace ControlPanel.Interfaces.Reposytorys
{
public interface ILivesSubscribersRepository: IMainRepository<Models.LiveSubscribers>
{
LiveSubscribers GetBySubscriber(Subscribers subscriber);
IList<LiveSubscribers> GetLog();
int Count();
}
}