PushMsgRepository.cs 490 B

123456789101112131415161718
  1. using Ropin.Inspection.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ropin.Inspection.Repository
  8. {
  9. public class PushMsgRepository : IPushMsgRepository
  10. {
  11. public async Task<bool> PushAlarmMsgAsync(TpushMsgModel pushModel)
  12. {
  13. //DbContext.Set<TMTN_PushMsgTo>().Where(expression).AsEnumerable()
  14. return await Task.FromResult(true);
  15. }
  16. }
  17. }