ATUL_v1.ATUL.GetProviderByID C# (CSharp) Method

GetProviderByID() private method

private GetProviderByID ( string ProviderID ) : string
ProviderID string
return string
        public string GetProviderByID(string ProviderID)
        {
            string d = string.Empty;
            long AtulProviderID = Convert.ToInt64(ProviderID);
            AtulBusinessLogic adb = new AtulBusinessLogic();
            d = adb.GetProviderByID(AtulProviderID);
            return d;
        }
ATUL