init
This commit is contained in:
31
Common/DTS.Common.ServiceLibrary/ServiceLibrary.cs
Normal file
31
Common/DTS.Common.ServiceLibrary/ServiceLibrary.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Runtime.Serialization;
|
||||
using System.ServiceModel;
|
||||
using System.Text;
|
||||
|
||||
namespace DTS.Common.ServiceLibrary
|
||||
{
|
||||
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in both code and config file together.
|
||||
public class ServiceLibrary : IServiceLibrary
|
||||
{
|
||||
public string GetData(int value)
|
||||
{
|
||||
return string.Format("You entered: {0}", value);
|
||||
}
|
||||
|
||||
public CompositeType GetDataUsingDataContract(CompositeType composite)
|
||||
{
|
||||
if (composite == null)
|
||||
{
|
||||
throw new ArgumentNullException("composite");
|
||||
}
|
||||
if (composite.BoolValue)
|
||||
{
|
||||
composite.StringValue += "Suffix";
|
||||
}
|
||||
return composite;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user