public Settings(IAppSettingsRepository rep_AppSettings, IProjectRepository rep_Project, ITypeValueRepository rep_TypeValue) { this.rep_TypeValue = rep_TypeValue; this.rep_AppSettings = rep_AppSettings; this.rep_Project = rep_Project; }
public Settings() { this.rep_TypeValue = new EFTypeValueRepository(); this.rep_AppSettings = new EFAppSettingsRepository(); this.rep_Project = new EFProjectRepository(); }