Group: Forum Members
Last Active: Mon 6 Dec 2021
Posts: 235,
Visits: 750
|
In the source code we have front end methods and back end methods separated by the use of an underscore (_). For example
Front End Method BasketBLL.AddNewBasketValue()
Back End Method OptionsBLL._GetOptionGroupPage()
Apart from showing coder what the INTENTION is behind the method, are there are other concerns that would prevent someone using a Back End Method for a Front End use? For example, is there anything stopping me using OptionsBLL._GetOptionGroupPage() to display information to the end user?
Obviously we have to be careful about what is in the data and weather or not we are exposing some sensitive data, but beyond that was is the restriction. Examples of possible restrictions I can think may apply:
Security Context If a method is shared and admin methods are less likely to be duplicated
Anything really?
We are always willing to help out the community or pitch in to help you fix a problem. However, if you want a complete solution made such as a code module or new feature added you have two options. Either 1) Reach out to the Kartris internal development team at http://www.kartris.com/Contact.aspx. 2) Contact one of the Kartris approved partners at http://www.kartris.com/t-Worldwide-Developers.aspx. Have fun and good luck coding.
|