-
Notifications
You must be signed in to change notification settings - Fork 0
Documentation
Sevenate edited this page May 21, 2019
·
6 revisions
- Create new user
- Generate unique login for user
- Authenticate user by login and password
- Update user password and email
- Get user ID by user login name.
- Generate new password and send it to user email
- Get all users
- Disable user
- Create new account for user
- Update account name for user
- Mark account as deleted for user
- Get all accounts for user
- Create new category for user
- Update category name for user
- Mark category as deleted for user
- Get all categories for user
- Get all asset types
- Get all journal types
- Create new transaction
- Update transaction price, quantity, comment, category, date, asset type and journal type
- Mark transaction as deleted
- Get all transactions from start to end date for user
- Get all transactions from start to end date by journal type
Entity | Attribute | Type and Length | Allow Null |
---|---|---|---|
User | Login | 50 Unicode chars | - |
Password | 256 Unicode chars | - | |
256 Unicode chars | Yes | ||
Account | Name | 50 | - |
Category | Name | 50 | - |
Transaction | Quantity | Small Money | Yes |
Price | Money | Yes | |
Comment | 256 Unicode chars | Yes | |
Category | Yes |
Last updated: 2011-03-14
See also Double Entry Accounting in a Relational Database
Silverlight local demo: http://thor/fab/sl/
Note: in Firefox launched locally on "thor" host there is an issue with IPv6 DNS resolution. To workaround it you could disable IPv6 DNS resolution for "thor" hostname:
- Open //about:config// page in Firefox
- Type Network.dns.ipv4OnlyDomains in filter
- Double click on preference name and enter thor as string value
- Restart Firefox
Major.Minor.Hg Revision.Zero
- Major: the major version of the product, changed manually with every product release with a large new feature set.
- Minor: the minor version of the product, changed manually with every minor product release containing some features.
- Hg Revision: the latest source-control revision of the code base used for this build.
- Zero: the last number is 0. If there're more than one builds at the same revision, it is an auto-incremented number.
For example, 1.5.4567.0 means that this is product version 1.5 at HG revision 4567.
Source: Product/Build Versioning with MSBuild
Also was useful for fixing defects in MSBuild.Community.Tasks.Version - How to debug MSBuild tasks