GetProviderByID() публичный Метод

public GetProviderByID ( long providerID ) : string
providerID long
Результат string
Пример #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;
 }