spaceclaim
Joined: 25 Jan 2007
Posts: 1
|
| Posted: Thu Jan 25, 2007 4:41 pm Post subject: VTiger CRM .Net Connector |
|
|
We are interested in having a .Net (C# or VB.Net) component created that will allow for simple data exchange between a dotnet web site and a VTiger CRM 5.0.2 database.
We need the ability to add, delete, modify and search for:
Contacts
Accounts
SupportTickets
SalesOrders
Invoices
For example, we should be able to call the VTigerConnector by:
Dim VTConn as New VTigerConnector
VTConn.Connect([MySQL IP],[Port],[Username],[Password],[Database Name])
Dim VTContact as New VTigerContacts(VTConn)
Dim VTConDetails as New VTigerContactDetails
VTConDetails.FirstName = "John"
VTConDetails.LastName = "Doe"
VTConDetails.Email = "--**--"
Etc.
VTContact.Add(VTConDetails)
Etc.[size=18][/size][size=12][/size] |
|