Esempio n. 1
0
 public void GetDBInfo(ref String DBName, ref String InstanceName)
 {
     using (CompanyInformationServiceClient client = new CompanyInformationServiceClient())
     {
         client.Open();
         client.GetDBInfo(ref DBName, ref InstanceName);
     }
 }
 public List<String> GetStoreIDs()
 {
     using (CompanyInformationServiceClient client = new CompanyInformationServiceClient())
     {
        client.Open();
        return client.GetStoreIDs();
     }
 }
Esempio n. 3
0
 public List <String> GetStationIDs(String StoreID)
 {
     using (CompanyInformationServiceClient client = new CompanyInformationServiceClient())
     {
         client.Open();
         return(client.GetStationIDs(StoreID));
     }
 }
 public void GetDBInfo(ref String DBName, ref String InstanceName)
 {
     using (CompanyInformationServiceClient client = new CompanyInformationServiceClient())
     {
         client.Open();
         client.GetDBInfo(ref DBName,ref InstanceName);
     }
 }