IUpdInfoRepository.cs
416 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 IUpdInfoRepository:IMainRepository<Models.UpdInfo>
{
UpdInfo GetBySubscriber(Subscribers subscriber);
IList<UpdInfo> GetLog(int start, int limit);
int Count();
}
}