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; using Ropin.Inspection.Model.ViewModel; namespace Ropin.Inspection.Service { public interface ITmtnDevOpsService : IBaseService, IBaseServiceById { Task> GetAllAsync(); Task> GetByConditionAsync(Expression> expression); Task UpdateAsync(string code, TmtnDevOpsUpdateModel updateModel); Task> GetConditionAsync(TmtnDevOpsSearchModel searchModel); Task DeleteAsync(string code); Task CreateDevOpsAsync(TmtnDevOpsViewModel content); Task> GetDevOpsWithImageAsync(TmtnDevOpsOrderSearchModel searchModel); Task GetRecords30DaysStatisticsAsync(string storeCode); Task> GetRecords30DaysStatisticsFullScreenAsync(string storeCode); Task> GetDevOpsFullScreenByDevIdAsync(DevOpsItemSearchModel searchModel); Task> GetDevRepairFullScreenByDevIdAsync(DevOpsItemSearchModel searchModel); Task GetDevOpsCountFullScreenByDevIdAsync(DevOpsItemSearchModel searchModel); Task GetDevRepairCountFullScreenByDevIdAsync(DevOpsItemSearchModel searchModel); Task> GetISPRecordAsync(DevOpsItemSearchModel searchModel); } }