예제 #1
0
 public int RegisterFunction(string FullName, Int64 PhoneNo, string Email, string UserName, string Address, string Password, DateTime DateOfBirth, int CardTypeID, int BankID, int AccountNo, int IFSCCode, bool Verified, int CardNumber)
 {
     try
     {
         DBA = new UserBLL(FullName, PhoneNo, Email, UserName, Address, Password, DateOfBirth, CardTypeID, BankID, AccountNo, IFSCCode, Verified, CardNumber);
         return(DBA.SaveinDB());
     }
     catch (Exception)
     {
         throw;
     }
 }