소스 검색

Added CommitChanges / CancelChanges to IEntity interface

frogsoftware 1 년 전
부모
커밋
10bdb25675
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      InABox.Core/Entity.cs

+ 4 - 0
InABox.Core/Entity.cs

@@ -24,6 +24,10 @@ namespace InABox.Core
         Guid Deleted { get; set; }
 
         bool IsChanged();
+
+        void CommitChanges();
+        void CancelChanges();
+
     }
 
     public interface ITaxable