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.

38 lines
1.1 KiB
C#

using SlnMesnac.Model.domain;
using SlnMesnac.Repository.service.@base;
using System;
using System.Collections.Generic;
using System.Text;
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2024 WenJY
* CLR4.0.30319.42000
* LAPTOP-E0N2L34V
* SlnMesnac.Repository.service.Impl
* d439bf21-2c36-42dd-8f56-3d22411df57a
*
* WenJY
* wenjy@mesnac.com
* 2024-04-08 10:34:17
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace SlnMesnac.Repository.service.Impl
{
public class BaseMaterialInfoServiceImpl : BaseServiceImpl<BaseMaterialInfo>, IBaseMaterialInfoService
{
public BaseMaterialInfoServiceImpl(Repository<BaseMaterialInfo> rep) : base(rep)
{
}
}
}