using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.SearchModel.LGS; using Ropin.Inspection.Model.ViewModel.LGS; using Ropin.Inspection.Service.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service.LGS.Interface { public interface ILargeScreenEventService : IBaseService, IBaseServiceById { Task CreateListAsync(List viewModel, string status = "1"); Task> GetConditionAsync(LargeScreenEventSearch searchModel); Task UpdateAsync(LargeScreenEventViewModel viewModel, string Id); } }