CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of DDD
ddd
by isalamejor123   March 25, 2012 @ 6:42am
Tags: ddd
19 Views
no comments
 
C#
 
[Serializable]
public class Match
{
 
   public Player PlayerOne { get; private set; }
   public Player PlayerTwo { get; private set; }
 
 
   internal bool PlayersInCommon(Match match)
by Robert Friberg   May 04, 2011 @ 5:58am
Tags: ddd
137 Views
2 comments
 
C#
 
[Serializable]
public class Match
{
   public Player PlayerOne { get; private set; }
   public Player PlayerTwo { get; private set; }
 
   ...
}
by Robert Friberg   May 04, 2011 @ 5:52am
Tags: DDD
141 Views
no comments
 
C#
public abstract class EntityBase {
    private object key;
    
    protected EntityBase() : this(null) {
    }
    
    protected EntityBase(object key) {
        this.key = key;
    }
    
by Robert.Eberhart   December 20, 2010 @ 7:35am
Tags: C#, DDD
157 Views
no comments
 
C#
namespace Northwind
{
    /// <summary>
    /// A base class for all entities that implements identity equality.
    /// </summary>
    /// <typeparam name="TId">The type of the ID.</typeparam>
    /// <typeparam name="T">The type of the derived class (required for equality)</typeparam>
    public abstract class EntityBase<TId, T> where T : EntityBase<TId, T>
    {
        private TId _id;
by Robert.Eberhart   December 20, 2010 @ 7:11am
Tags: NHibernate, C#, DDD
263 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate