Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

CrudData.cs

using Nop.Core;

namespace Nop.Tests.Nop.Services.Tests;

public class CrudData where TEntity : BaseEntity
{
    public TEntity BaseEntity { get; set; }

    public Func Insert { get; set; }

    public TEntity UpdatedEntity { get; set; }

    public Func Update { get; set; }

    public Func> GetById { get; set; }

    public Func IsEqual { get; set; }

    public Func Delete { get; set; }
}