using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.SearchModel.LGS; using Ropin.Inspection.Model.ViewModel.LGS; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Repository.LGS.Interface { public interface ILargeScreenEventRepository : IRepositoryBase, IRepositoryBaseById { Task> GetConditionAsync(LargeScreenEventSearch searchModel); Task UpdateLargeScreenEventStatusBYId(string Id, string satus); } }