FIC_Solar/SolarPower/Repository/Interface/INoticeScheduleRepository.cs
Kai 69007218b5 1. bug fix
2. 加入寄信背景服務
2021-08-02 13:47:15 +08:00

15 lines
409 B
C#

using SolarPower.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Repository.Interface
{
public interface INoticeScheduleRepository : IRepositoryBase<NoticeSchedule>
{
Task<List<NoticeSchedule>> GetNotYetDelivery();
Task UpdateList(List<NoticeSchedule> noticeSchedules, List<string> properties);
}
}