예제 #1
0
        public void CreateTag(FinancialTransactionTagType tagType, Person creatingPerson)
        {
            // TODO: Verify that there isn't already a tag in this set in the transaction, and if so, delete it first

            SwarmDb.GetDatabaseForWriting().CreateFinancialTransactionTag(Identity, tagType.Identity);

            // TODO: Log that the tag was added (and by whom?)
        }
예제 #2
0
        public void CreateTag (FinancialTransactionTagType tagType, Person creatingPerson)
        {
            // TODO: Verify that there isn't already a tag in this set in the transaction, and if so, delete it first

            SwarmDb.GetDatabaseForWriting().CreateFinancialTransactionTag(this.Identity, tagType.Identity);

            // TODO: Log that the tag was added (and by whom?)
        }