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