1: using System;
2:
3: namespace Gaf.Controller
4: {
5: /// <summary>
6: /// Summary description for ControllerBase
7: /// </summary>
8: public abstract class ControllerBase
9: {
10:
11:
12: /// <summary>
13: /// Loads data from the database
14: /// </summary>
15: public abstract void LoadData();
16:
17:
18: /// <summary>
19: /// Stores the data from the UI to the db
20: /// </summary>
21: public abstract void StoreData();
22:
23:
24:
25: /// <summary>
26: /// Builds the userinterface of the view it represeents
27: /// </summary>
28: public abstract void BuildUI();
29:
30:
31: /// <summary>
32: /// Handles the response from the UI
33: /// </summary>
34: public abstract void UiResponse();
35:
36:
37: } //eof class
38: } //eof namespace
No comments:
Post a Comment
- the first minus - Comments have to be moderated because of the spammers
- the second minus - I am very lazy at moderating comments ... hardly find time ...
- the third minus - Short links are no good for security ...
- The REAL PLUS : Any critic and positive feedback is better than none, so your comments will be published sooner or later !!!!