Changeset 6246 for branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Models
- Timestamp:
- 05/21/11 22:07:58 (14 years ago)
- Location:
- branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Models
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Models/AdminModel.cs
r6218 r6246 232 232 return 0; 233 233 }//SaveProblem 234 235 234 236 } 235 237 } -
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Models/AlgorithmClassModel.cs
r6161 r6246 12 12 13 13 public String SelectedSubMenu { get; set; } 14 public IList<AlgorithmClass> AlgorithmClasses { get { return AlgorithmClassGetAll(); } } 14 public IList<AlgorithmClass> AlgorithmClasses { 15 get { return AlgorithmClassGetAll(); } 16 set { ;} 17 } 15 18 16 19 public AlgorithmClass AlgorithmClass { get; set; } -
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Models/AlgorithmModel.cs
r6213 r6246 105 105 return 0; 106 106 }//SaveAlgorithm 107 108 public void UpdateAlgorithmData(long id, byte[] data) { 109 AdministrationServiceClient adminClient = Admin.GetClientFactory(); 110 111 if (adminClient != null) { 112 adminClient.UpdateAlgorithmData(id, data); 113 } 114 }//UpdateProblemData 107 115 } 108 116 } -
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Models/ProblemClassModel.cs
r6161 r6246 10 10 11 11 public String SelectedSubMenu { get; set; } 12 public IList<ProblemClass> ProblemClasses { get { return ProblemClassGetAll(); } } 12 public IList<ProblemClass> ProblemClasses { 13 get { return ProblemClassGetAll();} 14 set {;} 15 } 13 16 14 17 public ProblemClass ProblemClass { get; set; } -
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Models/ProblemModel.cs
r6213 r6246 108 108 return 0; 109 109 }//SaveProblem 110 111 public void UpdateProblemData(long id, byte[] data) { 112 AdministrationServiceClient adminClient = Admin.GetClientFactory(); 113 114 if (adminClient != null) { 115 adminClient.UpdateProblemData(id, data); 116 } 117 }//UpdateProblemData 110 118 } 111 119 }
Note: See TracChangeset
for help on using the changeset viewer.