11 lines
262 B
C#
11 lines
262 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);
|
|||
|
}
|
|||
|
}
|