示例#1
0
 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;
 }
示例#2
0
 public Settings()
 {
     this.rep_TypeValue   = new EFTypeValueRepository();
     this.rep_AppSettings = new EFAppSettingsRepository();
     this.rep_Project     = new EFProjectRepository();
 }