Changeset 5038
- Timestamp:
- 12/06/10 17:11:17 (14 years ago)
- Location:
- branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New
- Files:
-
- 8 added
- 8 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Services.Hive.Common/3.3/ServiceContracts/IHiveService.cs
r4905 r5038 101 101 #endregion 102 102 103 #region Project Methods104 [OperationContract]105 Project GetAllProjects();106 [OperationContract]107 void CreateProject(Project project);108 [OperationContract]109 void ChangeProject(Project project);110 [OperationContract]111 void DeleteProject(Guid projectId);112 [OperationContract]113 IEnumerable<Job> GetJobsByProject(Guid projectId);114 #endregion115 116 103 #region Login Methods 117 104 // rename "Login"-methods to "Register" or "SayHello", since its only purpose is to send Slave-Info (is Login() should not be used anymore) -
branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Services.Hive/3.3/HiveService.cs
r5028 r5038 162 162 } 163 163 #endregion 164 165 #region Project Methods 166 public Project GetAllProjects() { 167 throw new NotImplementedException(); 168 } 169 170 public void CreateProject(Project project) { 171 throw new NotImplementedException(); 172 } 173 174 public void ChangeProject(Project project) { 175 throw new NotImplementedException(); 176 } 177 178 public void DeleteProject(Guid projectId) { 179 throw new NotImplementedException(); 180 } 181 182 public IEnumerable<Job> GetJobsByProject(Guid projectId) { 183 throw new NotImplementedException(); 184 } 185 #endregion 186 164 187 165 #region Login Methods 188 166 //public void Login() {
Note: See TracChangeset
for help on using the changeset viewer.