Exemplo n.º 1
0
        public IOrganizationService GetOrganisationService(string orgUrl, string username, string password)
        {
            CrmConnection connection = new CrmConnection(orgUrl, username, password);

            return(connection.ServiceProxy);
        }
Exemplo n.º 2
0
        public OrganizationServiceContext GetOrganisationContext(string orgUrl, string username, string password)
        {
            CrmConnection connection = new CrmConnection(orgUrl, username, password);

            return(connection.GetContext());
        }
Exemplo n.º 3
0
        public OrganizationServiceContext GetOrganisationContext(string orgUrl)
        {
            CrmConnection connection = new CrmConnection(orgUrl);

            return(connection.GetContext());
        }
Exemplo n.º 4
0
        public IOrganizationService GetOrganisationService(string orgUrl)
        {
            CrmConnection connection = new CrmConnection(orgUrl);

            return(connection.ServiceProxy);
        }
Exemplo n.º 5
0
 public OrganizationServiceContext GetOrganisationContext(string orgUrl, string username, string password)
 {
     CrmConnection connection = new CrmConnection(orgUrl, username, password);
     return connection.GetContext();
 }
Exemplo n.º 6
0
 public IOrganizationService GetOrganisationService(string orgUrl)
 {
     CrmConnection connection = new CrmConnection(orgUrl);
     return connection.ServiceProxy;
 }
Exemplo n.º 7
0
 public IOrganizationService GetOrganisationService(string orgUrl, string username, string password)
 {
     CrmConnection connection = new CrmConnection(orgUrl, username, password);
     return connection.ServiceProxy;
 }
Exemplo n.º 8
0
 public OrganizationServiceContext GetOrganisationContext(string orgUrl)
 {
     CrmConnection connection = new CrmConnection(orgUrl);
     return connection.GetContext();
 }