/// <summary> This is the constructor of the controller that deals with the dependency injection of the application for <see cref="Dependent"/> </summary>
 /// <param name="domain"> <see cref="IDependentDomain"/> </param>
 public DependentController(IDependentDomain domain)
 {
     _domain = domain;
 }
Esempio n. 2
0
        public DependentDomainFixture()
        {
            _repository = new Mock <IDependentRepository>();

            _domain = new DependentDomain(_repository.Object);
        }