Införande av repository method
This commit is contained in:
8
Accounting.Models/Common/BaseEntity.cs
Normal file
8
Accounting.Models/Common/BaseEntity.cs
Normal file
@ -0,0 +1,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
namespace Accounting.Models.Common;
|
||||
|
||||
public abstract class BaseEntity
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user