using System.Collections.Generic; using System.Threading.Tasks; using Datory; namespace GxPress.Repository.Interface.SmsLog { public interface ISmsLogRepository : IRepository { Task InsertAsync(IEnumerable smsLogs); } }