You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
using Kean.Infrastructure.Soap;
|
|
using Kean.Presentation.Rest.Soaps.Contracts;
|
|
using System;
|
|
|
|
namespace Kean.Presentation.Rest.Soaps.Services
|
|
{
|
|
[Route("soap/test")]
|
|
public class MyService : MyServiceContract
|
|
{
|
|
public void DoWork(MyRequestContract request)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|