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 GetAllNeedSendEmail();
///
/// 更新邮件列表为已发送
///
/// 邮件列表
void UpdateEmailToSend(List models);
}
}