ISmsLogRepository.cs 261 B

1234567891011
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. namespace GxPress.Repository.Interface.SmsLog
  5. {
  6. public interface ISmsLogRepository : IRepository
  7. {
  8. Task<bool> InsertAsync(IEnumerable<Entity.SmsLog> smsLogs);
  9. }
  10. }