12 lines
No EOL
311 B
C#
12 lines
No EOL
311 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Retroactiune.Models;
|
|
|
|
namespace Retroactiune.Services
|
|
{
|
|
public interface IFeedbackReceiverService
|
|
{
|
|
public Task CreateManyAsync(IEnumerable<FeedbackReceiver> items);
|
|
public Task DeleteOneAsync(string guid);
|
|
}
|
|
} |