コード例 #1
0
        public ControllerFactory(FileHandler fileHandler)
        {
            this.fileHandler = fileHandler;

            this.dll = new DataBaseLogicLayer(string.Format("Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Jet OLEDB:Engine Type=5", this.fileHandler.CompleteFileString()));
            this.bll = new BLL(this.fileHandler, this.dll);
        }
コード例 #2
0
 public AddMemberController(BLL bll)
     : base(bll)
 {
 }
コード例 #3
0
 public ControllerBase(BLL bll)
 {
     this.bll = bll;
 }
コード例 #4
0
 public MainFormController(BLL bll)
     : base(bll)
 {
 }
コード例 #5
0
 public AddTitheRecordController(BLL bll)
     : base(bll)
 {
 }