2021-05-29 18:12:36 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Retroactiune.Models;
|
|
|
|
|
|
|
|
|
|
namespace Retroactiune.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IFeedbackReceiverService
|
|
|
|
|
{
|
|
|
|
|
public Task CreateManyAsync(IEnumerable<FeedbackReceiver> items);
|
2021-06-01 13:20:31 +00:00
|
|
|
|
public Task DeleteOneAsync(string guid);
|
2021-06-05 16:39:47 +00:00
|
|
|
|
Task<IEnumerable<FeedbackReceiver>> FindAsync(IEnumerable<string> guid, int? offset = null, int? limit = null);
|
2021-05-29 18:12:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|