All Projects → AshV → Dynamics365consolecaller

AshV / Dynamics365consolecaller

Boilerplate code for testing Dynamics 365 / CRM code locally

Labels

Projects that are alternatives of or similar to Dynamics365consolecaller

Serendipity
Serendipity is an open source Customer Engagement Platform
Stars: ✭ 297 (+828.13%)
Mutual labels:  crm
Wp Erp
An open-source ERP (Enterprise Resource Planning) solution for WordPress
Stars: ✭ 441 (+1278.13%)
Mutual labels:  crm
Metasfresh
We do Open Source ERP - Fast, Flexible & Free Software to scale your Business.
Stars: ✭ 807 (+2421.88%)
Mutual labels:  crm
Crm
ChurchCRM is an OpenSource Church CRM & Management Software.
Stars: ✭ 312 (+875%)
Mutual labels:  crm
Akaunting
Free and Online Accounting Software
Stars: ✭ 4,599 (+14271.88%)
Mutual labels:  crm
Vue Crud
Vue.js based REST-ful CRUD system
Stars: ✭ 629 (+1865.63%)
Mutual labels:  crm
Cercle
Cercle is a CRM+Project Manager for your organization - Phoenix Framework & Vuejs
Stars: ✭ 284 (+787.5%)
Mutual labels:  crm
Pro
ECStore Pro - Laravel 微信网店微服务框架
Stars: ✭ 14 (-56.25%)
Mutual labels:  crm
Property web builder
The ultimate Ruby on Rails engine for creating real estate websites ⛺
Stars: ✭ 414 (+1193.75%)
Mutual labels:  crm
Crm Application
OroCRM - an open-source Customer Relationship Management application.
Stars: ✭ 785 (+2353.13%)
Mutual labels:  crm
Dynamics 365 Workflow Tools
Dynamics 365 Workflow Tools is a Community solution that expands Microsoft Dynamics 365 (CRM) Workflow features with lots of new posibilities. This helps you to build very advanced Codeless solutions in CRM.
Stars: ✭ 331 (+934.38%)
Mutual labels:  crm
Gauzy
Gauzy™ - Open-Source Business Management Platform (ERP/CRM/HRM)
Stars: ✭ 374 (+1068.75%)
Mutual labels:  crm
Friends
Spend time with the people you care about. Introvert-tested. Extrovert-approved.
Stars: ✭ 737 (+2203.13%)
Mutual labels:  crm
Steedos Platform
华炎魔方低代码/无代码平台。内核采用了元数据、微服务、微前端、K8S等最新的技术架构。Steedos Low-Code / No-Code Platform in nodejs and mongodb.
Stars: ✭ 310 (+868.75%)
Mutual labels:  crm
Notifyjs
Stars: ✭ 26 (-18.75%)
Mutual labels:  crm
Laravel Gymie
👨‍💻 Gym & Club Management System https://gymie.in
Stars: ✭ 285 (+790.63%)
Mutual labels:  crm
Purpleadmin Free Admin Template
Purple Admin is one of the most stylish Bootstrap admin dashboard you can get hands on. With its beautifully crafted captivating design and well-structured code.
Stars: ✭ 473 (+1378.13%)
Mutual labels:  crm
Zstore
Программа для складского учета с веб интерфейсом
Stars: ✭ 32 (+0%)
Mutual labels:  crm
Djangoffice
Project management/CRM for small offices - Clients, Jobs, Tasks, Rates, Activities, Timesheets, Contacts, Invoices etc. etc.
Stars: ✭ 13 (-59.37%)
Mutual labels:  crm
Espocrm
EspoCRM open source CRM application
Stars: ✭ 750 (+2243.75%)
Mutual labels:  crm

This code has been written with only intention to save developer's time while testing Dynamics 365 code which requires connection to CRM organization & IOrganizationService and/or ITracingService instances.

To use it just download this project, open in Visual Studio and build to restore nugget packages, open Program.cs(below code) and provide credentials/client secret to GetOrganizationService method

class Program
{
    static void Main(string[] args)
    {
        IOrganizationService orgService;
        // Option 1 : Connect using Client Secret
        orgService = Connect.GetOrganizationServiceClientSecret(
             "<Client Id obtained from Azure AD App>",
             "<Client Secret obtained from Azure AD App>",
             "<Organization Uri>");

        // Option 2 : Connect using Password
        orgService = Connect.GetOrganizationService(
             "<UserID>@<OrganizationName>.onmicrosoft.com",
             "<Your Crush's Name i.e. Your Password>",
             "<CRM login URI>");
 
        Console.WriteLine("Connected to Organization Service!");

        ITracingService tracingService = Connect.GetTracingService("AshV_Log");

        // Write Your Testing Code here.

        var response = orgService.Execute(new WhoAmIRequest());
    }
}
  • To test code snippet just write/paste your code at mentioned place and simply run/debug.

  • You can even add references to DLLs in this project and call public methods.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].