12 lines
280 B
C#
12 lines
280 B
C#
using Medusa.Core.Handlers;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Medusa.Core.Services
|
|
{
|
|
public interface IHandlerService
|
|
{
|
|
public List<Type> Handlers { get; set; }
|
|
Task<XDocument> Handle(string model, string module, string method, XDocument body);
|
|
}
|
|
}
|