Exemplo n.º 1
0
        public static BSBBankDetail GetBSBBankDetail(Func <IDataReader, BSBBankDetail> rowParser, SqlDataReader reader)
        {
            BSBBankDetail obj = rowParser(reader);

            obj.InitDTO();
            obj.IsDirty = false;
            obj.IsNew   = false;
            return(obj);
        }
Exemplo n.º 2
0
 public BSBBankDetail CopyDTO(BSBBankDetail obj)
 {
     obj.BankCode = this.BankCode;
     obj.BankName = this.BankName;
     return(obj);
 }
Exemplo n.º 3
0
        /// <summary>
        /// Creates a new object of type <see cref="BSBBankDetail"/>.
        /// </summary>
        /// <returns>Returns a newly instantiated collection of type <see cref="BSBBankDetail"/>.</returns>
        public static BSBBankDetail NewBSBBankDetail()
        {
            BSBBankDetail obj = new BSBBankDetail();

            return(obj);
        }
Exemplo n.º 4
0
 protected void UpdateChildren(BSBBankDetail parent, SqlConnection connection, SqlTransaction trans)
 {
 }