public HomeController() { this.Svc = ObjectFactory.GetInstance <RemoteLabService>(); }
public HomeController() { this.Svc = ObjectFactory.GetInstance<RemoteLabService>(); }
public HomeController(RemoteLabService Svc) { this.Svc = Svc; }
public AccountController() { this.Auth = ObjectFactory.GetInstance <IDirectoryServices>(); this.Svc = ObjectFactory.GetInstance <RemoteLabService>(); }
public AccountController(IDirectoryServices Auth, RemoteLabService Svc) { this.Auth = Auth; this.Svc = Svc; }
public PoolsController(RemoteLabService Svc, PasswordUtility Pw) { this.Svc = Svc; this.Pw = Pw; }
public AccountController() { this.Auth = ObjectFactory.GetInstance<IDirectoryServices>(); this.Svc = ObjectFactory.GetInstance<RemoteLabService>(); }