using System; using System.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.Hive.Server.Core.InternalInterfaces.DataAccess; using HeuristicLab.Hive.Contracts.BusinessObjects; namespace HeuristicLab.Hive.Server.ADODataAccess { class JobResultsAdapter: DataAdapterBase, IJobResultsAdapter { #region Overrides protected override dsHiveServer.JobResultRow Convert(JobResult obj, dsHiveServer.JobResultRow row) { throw new NotImplementedException(); } protected override JobResult Convert(dsHiveServer.JobResultRow row, JobResult obj) { throw new NotImplementedException(); } protected override dsHiveServer.JobResultRow InsertNewRow(JobResult obj) { throw new NotImplementedException(); } protected override void UpdateRow(dsHiveServer.JobResultRow row) { throw new NotImplementedException(); } protected override IEnumerable FindById(long id) { throw new NotImplementedException(); } protected override IEnumerable FindAll() { throw new NotImplementedException(); } #endregion #region IJobResultsAdapter Members public override void Update(JobResult ob) { throw new NotImplementedException(); } public override JobResult GetById(long id) { throw new NotImplementedException(); } public override ICollection GetAll() { throw new NotImplementedException(); } public override bool Delete(JobResult obj) { throw new NotImplementedException(); } public ICollection GetResultsOf(Job job) { throw new NotImplementedException(); } #endregion } }