Language: C#
BusinessObjectManagerNull
/// <summary> /// This is a Business Object Manager that can be used for ASP and similarly stateless environments. /// </summary> public class BusinessObjectManagerNull : BusinessObjectManager { public override void Add(IBusinessObject businessObject) { //DO Nothing } public override IBusinessObject this[Guid objectID] { get { return null; } } public override IBusinessObject this[IPrimaryKey objectID] { get { return null;} } }
Tags:
Description:
Null Business Object Manager used for Habanero Enterprise Application framework
Report Abuse
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search

