ATUL_v1.AtulBusinessLogic.GetProviderByID C# (CSharp) Method

GetProviderByID() public method

public GetProviderByID ( long providerID ) : string
providerID long
return string
        public string GetProviderByID(long providerID)
        {
            DataTable returnTable = new DataTable();
            Atul_v1Data adb = new Atul_v1Data();
            returnTable = adb.GetProviderByID(providerID);
            return JsonMethods.GetJSONString(returnTable);
        }

Usage Example

Beispiel #1
0
 public string GetProviderByID(string ProviderID)
 {
     string d = string.Empty;
     long AtulProviderID = Convert.ToInt64(ProviderID);
     AtulBusinessLogic adb = new AtulBusinessLogic();
     d = adb.GetProviderByID(AtulProviderID);
     return d;
 }
AtulBusinessLogic