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);
        }
 public AddMemberController(BLL bll)
     : base(bll)
 {
 }
 public ControllerBase(BLL bll)
 {
     this.bll = bll;
 }
 public MainFormController(BLL bll)
     : base(bll)
 {
 }
 public AddTitheRecordController(BLL bll)
     : base(bll)
 {
 }