Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/JobResultsAdapter.cs @ 1000

Last change on this file since 1000 was 1000, checked in by svonolfe, 16 years ago

Added job results data adapter interface for the Hive DAL (#372)

File size: 1.9 KB
RevLine 
[1000]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Server.Core.InternalInterfaces.DataAccess;
6using HeuristicLab.Hive.Contracts.BusinessObjects;
7
8namespace HeuristicLab.Hive.Server.ADODataAccess {
9  class JobResultsAdapter:
10    DataAdapterBase<dsHiveServerTableAdapters.JobResultTableAdapter,
11                    JobResult,
12                    dsHiveServer.JobResultRow>,
13    IJobResultsAdapter {
14    #region Overrides
15    protected override dsHiveServer.JobResultRow Convert(JobResult obj, dsHiveServer.JobResultRow row) {
16      throw new NotImplementedException();
17    }
18
19    protected override JobResult Convert(dsHiveServer.JobResultRow row, JobResult obj) {
20      throw new NotImplementedException();
21    }
22
23    protected override dsHiveServer.JobResultRow InsertNewRow(JobResult obj) {
24      throw new NotImplementedException();
25    }
26
27    protected override void UpdateRow(dsHiveServer.JobResultRow row) {
28      throw new NotImplementedException();
29    }
30
31    protected override IEnumerable<dsHiveServer.JobResultRow> FindById(long id) {
32      throw new NotImplementedException();
33    }
34
35    protected override IEnumerable<dsHiveServer.JobResultRow> FindAll() {
36      throw new NotImplementedException();
37    }
38    #endregion
39
40    #region IJobResultsAdapter Members
41    public override void Update(JobResult ob) {
42      throw new NotImplementedException();
43    }
44
45    public override JobResult GetById(long id) {
46      throw new NotImplementedException();
47    }
48
49    public override ICollection<JobResult> GetAll() {
50      throw new NotImplementedException();
51    }
52
53    public override bool Delete(JobResult obj) {
54      throw new NotImplementedException();
55    }
56
57    public ICollection<JobResult> GetResultsOf(Job job) {
58      throw new NotImplementedException();
59    }
60    #endregion
61  }
62}
Note: See TracBrowser for help on using the repository browser.