Video 76
Se hizo toda la parte del Unit Of Work y estoy a punto de terminar la de tests unitarios
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MongoProject.Domain.Common
|
||||
{
|
||||
public abstract class BaseDomainModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public DateTime? CreatedDate { get; set; }
|
||||
public string? CreatedBy { get; set; }
|
||||
|
||||
public DateTime? LastModifiedDate { get; set; }
|
||||
public string? LastModifiedBy { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user