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 ITmtnPushMsgToService : IBaseService, IBaseServiceById { Task> GetAllAsync(); Task> GetByConditionAsync(Expression> expression); Task UpdateAsync(string code, TmtnPushMsgToUpdateModel updateModel); Task> GetConditionAsync(TmtnPushMsgToSearchModel searchModel); Task DeleteAsync(string code); Task CreatePushMsgToListAsync(IEnumerable viewModelList); Task CreatePushMsgToHaveListAsync(TmtnPushMsgToListCreateModel content); Task> GetPushMsgToUsersByAsync(string devStoreCode); Task GetPushMsgTosByAsync(string devStoreCode, string userCode); Task PushAlarmMsgAsync(TpushMsgModel pushModel); Task DeleteByDevPersonIdAsync(TmtnPushMsgToListDelete model); } }