Skip to content

Commit 82562ae

Browse files
committed
fix build
1 parent 3eef96f commit 82562ae

9 files changed

Lines changed: 26 additions & 8 deletions

File tree

sample/Tracker/Tracker.Core/Data/Entities/Audit.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace 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.

sample/Tracker/Tracker.Core/Data/Entities/Priority.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace 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.

sample/Tracker/Tracker.Core/Data/Entities/Role.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace 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.

sample/Tracker/Tracker.Core/Data/Entities/Status.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace 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.

sample/Tracker/Tracker.Core/Data/Entities/Task.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace 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.

sample/Tracker/Tracker.Core/Data/Entities/Tenant.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace 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.

sample/Tracker/Tracker.Core/Data/Entities/User.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace 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.

sample/Tracker/Tracker.Core/Data/Entities/UserLogin.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace 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.

sample/Tracker/Tracker.Core/Data/Entities/UserRole.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55

6+
using Tracker.Core.Definitions;
7+
68
namespace Tracker.Core.Data.Entities;
79

810
/// <summary>

0 commit comments

Comments
 (0)