using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.SearchModel.DEV; using Ropin.Inspection.Model.ViewModel.DEV; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Repository.DEV.Interface { public interface IDevBoxRepository : IRepositoryBase, IRepositoryBaseById { Task> GetConditionAsync(DevBoxSearchModel searchModel); Task DeleteBYDevStoreCode(string devStoreCode); } }