Using Ninject with mocks in F#
问题 This question is part of larger question that can be found here As in out production code we use Ninject and constructor injection our services tend to look like this public class Service : IService { private readonly IRepository _repository; public Service(IRepository repository) { _repository = repository; } public Task<IEnumerable<SelectOption>> GetAlLogicOptions() { return _repository.GetOptionsAsync(); } } how ever list of constructor parameters may and will change over time. This is the