我試圖做一個有兩個構造函數的類,它們都帶有三個參數。 public class RequestController : IRequestController
{
public RequestController(IConnector, IAddRequestHandler, IAddReplyHandler) { ... }
public RequestController
我使用Unity與我的WebApi項目,並使用配置文件註冊類型。我已經注入依賴到控制器構造函數,它一直以精美的工作...直到我忘了類型映射並收到以下錯誤: An error occurred when trying to create a controller of type 'FooController'. Make sure that the controller has a paramete
我有一個私有構造函數和一個靜態創建方法,返回一個類的實例,我希望Unity在請求類的實例時調用此方法。 例如: public interface IService
{
void MethodA();
}
public class Service: IService
{
private Service(){}
public static Service Cr