12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SCC.Models;
- namespace SCC.Interface
- {
-
-
-
- public interface IEmail
- {
-
-
-
-
-
-
-
- bool AddEmail(string LotteryName, string QiHao, DateTime OpenTime,string Spare="");
-
-
-
-
- List<EmailModel> GetAllNeedSendEmail();
-
-
-
-
- void UpdateEmailToSend(List<EmailModel> models);
- }
- }
|