File tree Expand file tree Collapse file tree
sample/Tracker/Tracker.Core/Data/Entities Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
911/// Represents the <c>Audit</c> entity mapped to the <c>dbo.Audit</c> table.
1012/// </summary>
1113[ Table ( "Audit" , Schema = "dbo" ) ]
12- public partial class Audit
14+ public partial class Audit : IHaveIdentifier
1315{
1416 /// <summary>
1517 /// Initializes a new instance of the <see cref="Audit"/> class.
Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
911/// Represents the <c>Priority</c> entity mapped to the <c>dbo.Priority</c> table.
1012/// </summary>
1113[ Table ( "Priority" , Schema = "dbo" ) ]
12- public partial class Priority
14+ public partial class Priority : IHaveIdentifier , ITrackCreated , ITrackUpdated
1315{
1416 /// <summary>
1517 /// Initializes a new instance of the <see cref="Priority"/> class and its collection navigation properties.
Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
911/// Represents the <c>Role</c> entity mapped to the <c>dbo.Role</c> table.
1012/// </summary>
1113[ Table ( "Role" , Schema = "dbo" ) ]
12- public partial class Role
14+ public partial class Role : IHaveIdentifier , ITrackCreated , ITrackUpdated
1315{
1416 /// <summary>
1517 /// Initializes a new instance of the <see cref="Role"/> class and its collection navigation properties.
Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
911/// Represents the <c>Status</c> entity mapped to the <c>dbo.Status</c> table.
1012/// </summary>
1113[ Table ( "Status" , Schema = "dbo" ) ]
12- public partial class Status
14+ public partial class Status : IHaveIdentifier , ITrackCreated , ITrackUpdated
1315{
1416 /// <summary>
1517 /// Initializes a new instance of the <see cref="Status"/> class and its collection navigation properties.
Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
911/// Represents the <c>Task</c> entity mapped to the <c>dbo.Task</c> table.
1012/// </summary>
1113[ Table ( "Task" , Schema = "dbo" ) ]
12- public partial class Task
14+ public partial class Task : IHaveIdentifier , ITrackCreated , ITrackUpdated
1315{
1416 /// <summary>
1517 /// Initializes a new instance of the <see cref="Task"/> class.
Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
911/// Represents the <c>Tenant</c> entity mapped to the <c>dbo.Tenant</c> table.
1012/// </summary>
1113[ Table ( "Tenant" , Schema = "dbo" ) ]
12- public partial class Tenant
14+ public partial class Tenant : IHaveIdentifier , ITrackCreated , ITrackUpdated
1315{
1416 /// <summary>
1517 /// Initializes a new instance of the <see cref="Tenant"/> class and its collection navigation properties.
Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
911/// Represents the <c>User</c> entity mapped to the <c>dbo.User</c> table.
1012/// </summary>
1113[ Table ( "User" , Schema = "dbo" ) ]
12- public partial class User
14+ public partial class User : IHaveIdentifier , ITrackCreated , ITrackUpdated
1315{
1416 /// <summary>
1517 /// Initializes a new instance of the <see cref="User"/> class and its collection navigation properties.
Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
911/// Represents the <c>UserLogin</c> entity mapped to the <c>dbo.UserLogin</c> table.
1012/// </summary>
1113[ Table ( "UserLogin" , Schema = "dbo" ) ]
12- public partial class UserLogin
14+ public partial class UserLogin : IHaveIdentifier , ITrackCreated , ITrackUpdated
1315{
1416 /// <summary>
1517 /// Initializes a new instance of the <see cref="UserLogin"/> class.
Original file line number Diff line number Diff line change 33using System . ComponentModel . DataAnnotations ;
44using System . ComponentModel . DataAnnotations . Schema ;
55
6+ using Tracker . Core . Definitions ;
7+
68namespace Tracker . Core . Data . Entities ;
79
810/// <summary>
You can’t perform that action at this time.
0 commit comments