From b13b37028590930438e4514f470336c89cd94673 Mon Sep 17 00:00:00 2001 From: Jayesh Tanna Date: Sun, 2 Jun 2019 06:11:46 +0530 Subject: [PATCH] updated description of compoenents --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index eee776e..e98b068 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,16 @@ + # unittest-mocking -Mocking practices using Moq in Microsoft unit test framework + +This solution contains below components. + +Contracts: All entities, enums will be part of this component. + +Repositories: This component contains all Repositories including IRepository interface. All repositories implementing IRepository interface. This component is responsible to connect with Data component. + +Services: This component is responsible to contain all business logic. + +Services.Interfaces: This component contains interfaces related to services. So service can implement respective interface. This can be used for DI. + +Services.UnitTests: This components having all unit tests. This component contains unit tests related to our services. + +