Beispiel #1
0
        public Boolean SignIn(String username, String password)
        {
            objDAL = new DAL_ADO();

            return(objDAL.SignIn(username, password));
        }
Beispiel #2
0
        public DataTable GetCustomers()
        {
            DAL_ADO objDAL = new DAL_ADO();

            return(objDAL.GetCustomers());
        }
Beispiel #3
0
        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);
        }
Beispiel #4
0
        public String WithdrawAmount(float transactionAmount, int accountNo)
        {
            objDAL = new DAL_ADO();

            return(objDAL.WithdrawAmount(transactionAmount, accountNo));
        }
Beispiel #5
0
        public DataTable SearchCustomers(String accountType = "", String customerName = "", String customerAddress = "")
        {
            objDAL = new DAL_ADO();

            return(objDAL.SearchCustomers(accountType, customerName, customerAddress));
        }
Beispiel #6
0
        public void InactivateAccount(float transactionAmount, int accountNo, int id)
        {
            objDAL = new DAL_ADO();

            objDAL.InactivateAccount(transactionAmount, accountNo, id);
        }
Beispiel #7
0
        public String DepositeAmount(float transactionAmount, int accountNo)
        {
            objDAL = new DAL_ADO();

            return(objDAL.DepositeAmount(transactionAmount, accountNo));
        }
Beispiel #8
0
        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));
        }
Beispiel #9
0
        public String CreateAccount(int accountTypeID, float accountBalance, int customerID)
        {
            objDAL = new DAL_ADO();

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