Exemple #1
0
        /* Constructors */

        /// <summary>
        /// Initializes a new instance of the SkillType class.
        /// </summary>
        /// <param name="repository">
        /// The <see cref="IEveRepository" /> which contains the entity adapter.
        /// </param>
        /// <param name="entity">
        /// The data entity that forms the basis of the adapter.
        /// </param>
        internal SkillType(IEveRepository repository, EveTypeEntity entity) : base(repository, entity)
        {
            Contract.Requires(repository != null, "The repository associated with the object cannot be null.");
            Contract.Requires(entity != null, "The entity cannot be null.");
        }
Exemple #2
0
 /* Constructors */
 /// <summary>
 /// Initializes a new instance of the GenericType class.
 /// </summary>
 /// <param name="repository">
 /// The <see cref="IEveRepository" /> which contains the entity adapter.
 /// </param>
 /// <param name="entity">
 /// The data entity that forms the basis of the adapter.
 /// </param>
 internal GenericType(IEveRepository repository, EveTypeEntity entity)
     : base(repository, entity)
 {
     Contract.Requires(repository != null, "The repository associated with the object cannot be null.");
       Contract.Requires(entity != null, "The entity cannot be null.");
 }