using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using YZXYH.Repository.Models; namespace YZXYH.Repository.Interface { public partial interface ILotterySettingRepository:IBaseRepository { string GetLotteryGroupStr(bool isAddBlank = false); List GetLotteryGroup(); string GetLotteryTypeStr(bool isAddBlank = false); List GetLotteryType(); string AddLotteryGroup(string group); //string UpdateLotteryGroup(string group); string DeleteLotteryGroup(string group); string AddLotteryType(string type); //string UpdateLotteryType(string type); string DeleteLotteryType(string type); void UpdateTextColor(string color); } }