Thinktecture.Tools.Web.Services.CodeGeneration.ConfigurationDecorator.GetServiceTypeName C# (CSharp) Method

GetServiceTypeName() private method

private GetServiceTypeName ( ) : string
return string
        private string GetServiceTypeName()
        {
            // Let us know if there is more than one service type.
            Debug.Assert(code.ServiceTypes.Count == 1, "There is not only one service type.");
            string serviceTypeName = code.ServiceTypes[0].ExtendedObject.Name;
            return serviceTypeName;
        }