1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Hive.Server.Core.InternalInterfaces.DataAccess;
|
---|
6 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
7 |
|
---|
8 | namespace 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 | }
|
---|