using Ropin.Inspection.Model;
using Ropin.Inspection.Service.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Service
{
    public interface ITdevBoxService : IBaseService<TdevBoxViewModel>, IBaseServiceById<TdevBoxViewModel, string>
    {
        Task<IEnumerable<TdevBoxViewModel>> GetConditionAsync(TdevBoxSearchModel searchModel);
        Task UpdateAsync(string id, TdevBoxUpdateModel updateModel);
        Task<TdevBoxViewModel> GetConditionByIdAsync(string code);
         Task CopyCreateAsync(string oldId);
    }
}