Example #1
0
        /// <summary>
        /// Get the name of the endpoint in the config file
        /// </summary>
        /// <param name="service"></param>
        /// <returns></returns>

        public static string GetServiceEndpointName(AvailableServicesEnum service)
        {
            string endpointNameInAppConfig = service.ToString() + "_" + EndpointType.ToString();

            return(endpointNameInAppConfig);
        }