/// <summary>
 /// Deprecated Method for adding a new object to the tblBankAccount EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTotblBankAccount(tblBankAccount tblBankAccount)
 {
     base.AddObject("tblBankAccount", tblBankAccount);
 }
 /// <summary>
 /// Create a new tblBankAccount object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="fullName">Initial value of the FullName property.</param>
 /// <param name="iBAN">Initial value of the IBAN property.</param>
 /// <param name="createdBy">Initial value of the CreatedBy property.</param>
 /// <param name="createdDate">Initial value of the CreatedDate property.</param>
 /// <param name="isDefault">Initial value of the IsDefault property.</param>
 public static tblBankAccount CreatetblBankAccount(global::System.Int32 id, global::System.String fullName, global::System.String iBAN, global::System.Guid createdBy, global::System.DateTime createdDate, global::System.Boolean isDefault)
 {
     tblBankAccount tblBankAccount = new tblBankAccount();
     tblBankAccount.Id = id;
     tblBankAccount.FullName = fullName;
     tblBankAccount.IBAN = iBAN;
     tblBankAccount.CreatedBy = createdBy;
     tblBankAccount.CreatedDate = createdDate;
     tblBankAccount.IsDefault = isDefault;
     return tblBankAccount;
 }