/// <summary>
 ///     Initialises a new <see cref="SqlServerRepositoryOfTRecordDynamic" /> instance.
 /// </summary>
 /// <param name="project">
 ///     Sets the project, in which this runtime type is included.
 /// </param>
 /// <param name="entity">
 ///     Sets the domain entity from which the repository is generated.
 /// </param>
 public SqlServerRepositoryOfTRecordDynamic(GeneratedProject project) : base(project)
 {
 }
Beispiel #2
0
 /// <summary>
 ///     Initialises a new <see cref="SqlServerRepositoryFromEntityUser" /> instance.
 /// </summary>
 /// <param name="project">
 ///     Sets the project, in which this runtime type is included.
 /// </param>
 /// <param name="entity">
 ///     Sets the domain entity from which the repository is generated.
 /// </param>
 public SqlServerRepositoryFromEntityUser(GeneratedProject project, DomainEntity entity) : base(project)
 {
     _entity = entity;
 }