GetProviderByID() public method

public GetProviderByID ( long providerID ) : string
providerID long
return string
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;
 }