using System.Collections.Generic; using System.Threading.Tasks; using Retroactiune.Models; namespace Retroactiune.Services { public interface IFeedbackReceiverService { public Task CreateManyAsync(IEnumerable items); public Task DeleteOneAsync(string guid); Task> FindAsync(IEnumerable guid, int? offset = null, int? limit = null); } }