INotificationRepository.cs
426 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ControlPanel.Models;
namespace ControlPanel.Interfaces.Reposytorys
{
interface INotificationRepository : IMainRepository<Models.Notification>
{
Notification GetByNumber(int number);
IList<Notification> GetLog(int start, int limit);
int Count();
}
}