|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace HealthMonitor.Util.Entities.Interfaces
- {
- public interface IEntity
- {
-
-
-
-
-
- string GetUniqueKey(string? key = null);
-
-
-
-
-
- string GetRequiredUniqueKey();
-
-
-
-
-
- string GetPrimaryKey();
-
-
-
-
-
- void AssignEntityKey(string key);
-
-
-
-
- void AssertValidate();
- }
- }
|