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.
54 lines
1.6 KiB
C#
54 lines
1.6 KiB
C#
10 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using Microsoft.Extensions.Logging;
|
||
|
using SlnMesnac.Model.domain;
|
||
|
|
||
|
namespace SlnMesnac.Repository.service.Impl
|
||
|
{
|
||
|
public class McsBinToMaterServiceImpl:IMcsBinToMaterService
|
||
|
{
|
||
|
private readonly Repository<McsBinToMater> _rep;
|
||
|
|
||
|
public McsBinToMaterServiceImpl(Repository<McsBinToMater> rep)
|
||
|
{
|
||
|
_rep = rep;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取大料料罐物料对应信息
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
/// <exception cref="ArgumentException"></exception>
|
||
|
public List<McsBinToMater> GetMcsBinToMaterList()
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return _rep.GetList();;
|
||
|
}
|
||
|
catch (Exception e)
|
||
|
{
|
||
|
throw new ArgumentException($"获取料仓物料对应信息异常:{e.Message}");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 通过机台编号、料罐编号获取料罐物料对应信息
|
||
|
/// </summary>
|
||
|
/// <param name="EquipId"></param>
|
||
|
/// <param name="BinNo"></param>
|
||
|
/// <returns></returns>
|
||
|
/// <exception cref="ArgumentException"></exception>
|
||
|
public McsBinToMater GetMcsBinToMaterByBinNo(int EquipId, int BinNo)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return _rep.GetFirst(x=>x.EquipId == EquipId && x.BinNo == BinNo);;
|
||
|
}
|
||
|
catch (Exception e)
|
||
|
{
|
||
|
throw new ArgumentException($"根据设备编号、料罐编号获取料仓物料对应信息异常:{e.Message}");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|