Click here to Skip to main content
15,879,326 members
Articles / Programming Languages / C#

ObjectLounge - An Object-Oriented Database Framework

Rate me:
Please Sign up or sign in to vote.
4.07/5 (8 votes)
30 Jul 2009LGPL310 min read 43.6K   425   45  
Host your Domain Models "Out Of The Box" + No storage or schema needed + Transactions on Domain Models + Validation
using System;
using Technewlogic.ObjectLounge.Framework.Proxy;

namespace Technewlogic.ObjectLounge.Framework.BaseConcerns
{
	internal interface IMarkStrategy
	{
		void Add(IUnitOfWorkConcern child, bool willBeInDB);
		void Remove(IUnitOfWorkConcern child, bool willBeInDB);
		void StateChange(IUnitOfWorkConcern child, bool willBeInDB);
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) www.technewlogic.de
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions