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 13:03:12 +00:00
|
|
|
|
Task<IEnumerable<FeedbackReceiver>> FindAsync(IEnumerable<string> guid);
|
2021-05-29 18:12:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|