コード例 #1
0
ファイル: BAL_Bank.cs プロジェクト: prathameshh27/BankOnWeb
        public Boolean SignIn(String username, String password)
        {
            objDAL = new DAL_ADO();

            return(objDAL.SignIn(username, password));
        }
コード例 #2
0
ファイル: BAL.cs プロジェクト: prathameshh27/BankOnWeb
        public DataTable GetCustomers()
        {
            DAL_ADO objDAL = new DAL_ADO();

            return(objDAL.GetCustomers());
        }
コード例 #3
0
ファイル: BAL_Bank.cs プロジェクト: prathameshh27/BankOnWeb
        public void UpdateCustomer(int id, String name = "", String address = "", String age = "", String mobile = "", String gender = "")
        {
            objDAL = new DAL_ADO();

            objDAL.UpdateCustomer(id, name, address, age, mobile, gender);
        }
コード例 #4
0
ファイル: BAL_Bank.cs プロジェクト: prathameshh27/BankOnWeb
        public String WithdrawAmount(float transactionAmount, int accountNo)
        {
            objDAL = new DAL_ADO();

            return(objDAL.WithdrawAmount(transactionAmount, accountNo));
        }
コード例 #5
0
ファイル: BAL_Bank.cs プロジェクト: prathameshh27/BankOnWeb
        public DataTable SearchCustomers(String accountType = "", String customerName = "", String customerAddress = "")
        {
            objDAL = new DAL_ADO();

            return(objDAL.SearchCustomers(accountType, customerName, customerAddress));
        }
コード例 #6
0
ファイル: BAL_Bank.cs プロジェクト: prathameshh27/BankOnWeb
        public void InactivateAccount(float transactionAmount, int accountNo, int id)
        {
            objDAL = new DAL_ADO();

            objDAL.InactivateAccount(transactionAmount, accountNo, id);
        }
コード例 #7
0
ファイル: BAL_Bank.cs プロジェクト: prathameshh27/BankOnWeb
        public String DepositeAmount(float transactionAmount, int accountNo)
        {
            objDAL = new DAL_ADO();

            return(objDAL.DepositeAmount(transactionAmount, accountNo));
        }
コード例 #8
0
ファイル: BAL_Bank.cs プロジェクト: prathameshh27/BankOnWeb
        public String CreateCustomer(String name = "", String address = "", String age = "", String mobile = "", String gender = "")
        {
            objDAL = new DAL_ADO();

            return(objDAL.CreateCustomer(name, address, age, mobile, gender));
        }
コード例 #9
0
ファイル: BAL_Bank.cs プロジェクト: prathameshh27/BankOnWeb
        public String CreateAccount(int accountTypeID, float accountBalance, int customerID)
        {
            objDAL = new DAL_ADO();

            return(objDAL.CreateAccount(accountTypeID, accountBalance, customerID));
        }