15 lines
350 B
C#
15 lines
350 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Taloyhtio.GeneralApi.IntegrationUtility.TaloyhtioIntegration;
|
|
|
|
namespace Taloyhtio.GeneralApi.IntegrationUtility.Services
|
|
{
|
|
public interface ISender<T>
|
|
where T : class
|
|
{
|
|
void Send(T item, TaloyhtioIntegrationClient proxy);
|
|
}
|
|
}
|