के साथ एक प्रकार का नकल करने के लिए moq का उपयोग करें मेरे पास निम्न इंटरफेस हैं। मुझे यकीन नहीं है कि टी सामान्य है कि इस तथ्य के कारण मैं एक आईरिपोजिटरी का नकल करने के लिए मोक का उपयोग कैसे कर सकता हूं। मुझे यकीन है कि एक रास्ता है, लेकिन मुझे यहां या Google के माध्यम से खोज के माध्यम से कुछ भी नहीं मिला है। क्या कोई जानता है कि मैं इसे कैसे प्राप्त कर सकता हूं?जेनेरिक पैरामीटर
मैं मोक के लिए बिल्कुल नया हूं, लेकिन इसे सीखने के लिए समय निकालने का लाभ देख सकता हूं।
/// <summary>
/// This is a marker interface that indicates that an
/// Entity is an Aggregate Root.
/// </summary>
public interface IAggregateRoot
{
}
/// <summary>
/// Contract for Repositories. Entities that have repositories
/// must be of type IAggregateRoot as only aggregate roots
/// should have a repository in DDD.
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IRepository<T> where T : IAggregateRoot
{
T FindBy(int id);
IList<T> FindAll();
void Add(T item);
void Remove(T item);
void Remove(int id);
void Update(T item);
void Commit();
void RollbackAllChanges();
}