git_bsmd/nsw/Source/bsmd.dbh.ResponseService/ResponseService.svc.cs
2015-04-23 06:02:43 +00:00

18 lines
758 B
C#

using log4net;
namespace bsmd.dbh.ResponseService
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in code, svc and config file together.
// NOTE: In order to launch WCF Test Client for testing this service, please select Service1.svc or Service1.svc.cs at the Solution Explorer and start debugging.
public class ResponseService : IResponseService
{
private ILog _log = LogManager.GetLogger("dbh ResponseService");
public void NSWResponse(bsmd.dbh.response.Root root)
{
_log.Info("response received!");
Response.ProcessResponse(root, Properties.Settings.Default.DBConnectionString);
}
}
}