IAgkRepository.cs
396 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 IAgkRepository : IMainRepository<Models.Agk>
{
Agk GetAgkByNumber(int number);
int Count();
IList<Agk> GetLog(int start, int limit);
}
}