ILevelsRiversRepository.cs 661 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 ILevelsRiversRepository : IMainRepository<Models.LevelRiver>
    {
        IList<LevelRiver> ActualLevelsRiversByAgk(Agk agk, LevelRiversEmpty obj);
        IList<LevelRiver> ActualLevelsRiversByAgk(Agk agk);
        bool FlagLastDuplicate(string status,bool repair, bool opendoor, Agk agk); 
        LevelRiver LastDuplicate(string status, bool repair, bool opendoor, Agk agk);
        LevelRiver GetByAgkAndMax(Agk agk);
     
       
    }
}