Exemplo n.º 1
0
        public void ExistAuditLogInDb_ExpectedParameters_Ok()
        {
            auditLogDataAccess.Add(auditLog);

            bool exists = auditLogDataAccess.Exists(auditLog.Id);

            Assert.IsTrue(exists);
        }
 public bool Exists(Guid id)
 {
     return(AuditLogDataAccess.Exists(id));
 }