예제 #1
0
 /// <summary>
 /// Konstruktor.
 /// </summary>
 public Context(SzpifDatabase dataBase, FormManager formManager)
 {
     this.Database          = dataBase;
     this.FormManager       = formManager;
     this.contentManager    = new ContentManager();
     this.ViewToGridManager = new BindManager(dataBase);
     this.interfaceManager  = new InterfaceBuilder();
     this.userLogin         = null;
     this.userPassword      = null;
     this.roles             = null;
 }
예제 #2
0
파일: Context.cs 프로젝트: Lucasus/szpif
		/// <summary>
		/// Konstruktor. 
		/// </summary>
		public Context(SzpifDatabase dataBase ,FormManager formManager)
        {
			this.Database = dataBase;
			this.FormManager = formManager;
            this.contentManager = new ContentManager();
			this.ViewToGridManager = new BindManager(dataBase);
            this.interfaceManager = new InterfaceBuilder();
            this.userLogin = null;
            this.userPassword = null;
            this.roles = null;
        }
예제 #3
0
        public PermissionManager(SzpifDatabase database)
		{
			this.database = database;
		}
예제 #4
0
		public DataManager(SzpifDatabase database)
		{
			this.database = database;
		}
예제 #5
0
 public DataManager(SzpifDatabase database)
 {
     this.database = database;
 }
예제 #6
0
		public BindManager(SzpifDatabase database)
		{
			this.database = database;
			views = new Dictionary<string, IntegratedView>();
		}
예제 #7
0
 public void makeDatabase()
 {
     database = SzpifDatabase.DataBase;
 }
예제 #8
0
 public BindManager(SzpifDatabase database)
 {
     this.database = database;
     views         = new Dictionary <string, IntegratedView>();
 }
예제 #9
0
 public PermissionManager(SzpifDatabase database)
 {
     this.database = database;
 }