public YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccountCollection GetWebServiceAccountCollectionByFacilityId(string facilityId)
        {
            YellowstonePathology.YpiConnect.Service.Identity.WebServiceAccountGateway webServiceAccountGateway = new WebServiceAccountGateway();
            YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccountCollection webServiceAccountCollection = webServiceAccountGateway.GetWebServiceAccountCollectionByFacilityId(facilityId);

            return webServiceAccountCollection;
        }
        public YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccount GetWebServiceAccount(string userName, string password)
        {
            YellowstonePathology.YpiConnect.Service.Log.ClientServicesLogService clientServicesLog = new Log.ClientServicesLogService();
            clientServicesLog.LogEvent(1055, userName);

            YellowstonePathology.YpiConnect.Service.Identity.WebServiceAccountGateway webServiceAccountGateway = new WebServiceAccountGateway();
            YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccount webServiceAccount = webServiceAccountGateway.GetAccount(userName, password);

            return webServiceAccount;
        }
Ejemplo n.º 3
0
 public YellowstonePathology.Business.Client.Model.ClientCollection GetClientCollectionForContextSelection(string userName)
 {
     YellowstonePathology.YpiConnect.Service.Identity.WebServiceAccountGateway webServiceAccountGateway = new WebServiceAccountGateway();
     return(webServiceAccountGateway.GetClientCollectionForContextSelection(userName));
 }
Ejemplo n.º 4
0
        public YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccountCollection GetWebServiceAccountCollectionByFacilityId(string facilityId)
        {
            YellowstonePathology.YpiConnect.Service.Identity.WebServiceAccountGateway     webServiceAccountGateway    = new WebServiceAccountGateway();
            YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccountCollection webServiceAccountCollection = webServiceAccountGateway.GetWebServiceAccountCollectionByFacilityId(facilityId);

            return(webServiceAccountCollection);
        }
Ejemplo n.º 5
0
        public YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccount GetWebServiceAccount(string userName, string password)
        {
            YellowstonePathology.YpiConnect.Service.Log.ClientServicesLogService clientServicesLog = new Log.ClientServicesLogService();
            clientServicesLog.LogEvent(1055, userName);

            YellowstonePathology.YpiConnect.Service.Identity.WebServiceAccountGateway webServiceAccountGateway = new WebServiceAccountGateway();
            YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccount       webServiceAccount        = webServiceAccountGateway.GetAccount(userName, password);

            return(webServiceAccount);
        }
Ejemplo n.º 6
0
 public YellowstonePathology.Business.Client.Model.ClientLocation GetClientLocation(int clientLocationId)
 {
     YellowstonePathology.YpiConnect.Service.Identity.WebServiceAccountGateway gateway = new WebServiceAccountGateway();
     return(gateway.GetClientLocation(clientLocationId));
 }
 public YellowstonePathology.Business.Client.Model.ClientLocation GetClientLocation(int clientLocationId)
 {
     YellowstonePathology.YpiConnect.Service.Identity.WebServiceAccountGateway gateway = new WebServiceAccountGateway();
     return gateway.GetClientLocation(clientLocationId);
 }
 public YellowstonePathology.Business.Client.Model.ClientCollection GetClientCollectionForContextSelection(string userName)
 {
     YellowstonePathology.YpiConnect.Service.Identity.WebServiceAccountGateway webServiceAccountGateway = new WebServiceAccountGateway();
     return webServiceAccountGateway.GetClientCollectionForContextSelection(userName);
 }