You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.8 KiB
C#

using SlnMesnac.Model.domain;
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2024 WenJY
* CLR4.0.30319.42000
* LAPTOP-E0N2L34V
* SlnMesnac.Repository.service.Impl
* b1ac41da-4c0a-49e9-beaa-5ebe10c0fd90
*
* WenJY
* wenjy@mesnac.com
* 2024-04-07 16:58:02
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace SlnMesnac.Repository.service.Impl
{
public class TeTestServiceImpl : ITeTestService
{
private Repository<TeTest> _rep;
public TeTestServiceImpl(Repository<TeTest> rep)
{
_rep = rep;
}
public List<TeTest> GetTestList()
{
try
{
var context = _rep.Context;
var dataTable = context.Ado.GetDataTable("select * from db_hwmes.t_e_1");
List<TeTest> entities = new List<TeTest>();
foreach (DataRow row in dataTable.Rows)
{
var entity = new TeTest
{
ts = row["ts"].ToString(),
volatagea = Convert.ToDouble(row["volatagea"])
};
entities.Add(entity);
}
return entities;
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
}
}
}