File tree Expand file tree Collapse file tree 6 files changed +6
-3
lines changed
CodeChavez.Repository.Pattern.MongoDB
CodeChavez.Repository.Pattern.Postgres
CodeChavez.Repository.Pattern Expand file tree Collapse file tree 6 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 99 <Title >CodeChavez Repository Pattern MongoDB Library</Title >
1010 <Authors >Victor A Chavez</Authors >
1111 <Product >CodeChavez.Repository.Pattern.MongoDB</Product >
12- <Version >9.0.1 </Version >
12+ <Version >9.0.2 </Version >
1313 <Copyright >2020-2025</Copyright >
1414 <Description >Has some useful extension and utilities that allow for every day development</Description >
1515 <PackageLicenseExpression >Apache-2.0</PackageLicenseExpression >
Original file line number Diff line number Diff line change 99 <Title >CodeChavez Repository Pattern Postgres Library</Title >
1010 <Authors >Victor A Chavez</Authors >
1111 <Product >CodeChavez.Repository.Pattern.Postgres</Product >
12- <Version >9.0.1 </Version >
12+ <Version >9.0.2 </Version >
1313 <Copyright >2020-2025</Copyright >
1414 <Description >Has some useful extension and utilities that allow for every day development</Description >
1515 <PackageLicenseExpression >Apache-2.0</PackageLicenseExpression >
Original file line number Diff line number Diff line change 99 <Title >CodeChavez Repository Pattern Library</Title >
1010 <Authors >Victor A Chavez</Authors >
1111 <Product >CodeChavez.Repository.Pattern</Product >
12- <Version >9.0.1 </Version >
12+ <Version >9.0.2 </Version >
1313 <Copyright >2020-2025</Copyright >
1414 <Description >Has some useful extension and utilities that allow for every day development</Description >
1515 <PackageLicenseExpression >Apache-2.0</PackageLicenseExpression >
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ public record class Document : IAudit
1010 public ObjectId Id { get ; set ; }
1111
1212 public bool IsActive { get ; set ; } = true ;
13+ public bool IsDeleted { get ; set ; } = false ;
1314 public DateTime CreatedDate { get ; set ; } = DateTime . UtcNow ;
1415 public string ? CreatedBy { get ; set ; }
1516 public DateTime ? ModifiedDate { get ; set ; } = DateTime . UtcNow ;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ public record class Entity : IAudit
99 public Guid Id { get ; set ; }
1010
1111 public bool IsActive { get ; set ; } = true ;
12+ public bool IsDeleted { get ; set ; } = false ;
1213 public DateTime CreatedDate { get ; set ; } = DateTime . UtcNow ;
1314 public string ? CreatedBy { get ; set ; }
1415 public DateTime ? ModifiedDate { get ; set ; } = DateTime . UtcNow ;
Original file line number Diff line number Diff line change 33public interface IAudit
44{
55 bool IsActive { get ; set ; }
6+ bool IsDeleted { get ; set ; }
67 DateTime CreatedDate { get ; set ; }
78 string ? CreatedBy { get ; set ; }
89 DateTime ? ModifiedDate { get ; set ; }
You can’t perform that action at this time.
0 commit comments