qinchulong
2025-03-01 71eaf9114fc39d137d76b303edeb1ff43e26cf6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_ISystemServices;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_SystemServices
{
    public class dt_outstockinfoService : ServiceBase<dt_outstockinfo, IRepository<dt_outstockinfo>>, Idt_OutstockinfoService
    {
        private readonly IMapper _mapper;
        /// <summary>
        /// 仓储层(数据库访问)
        /// </summary>
        public IRepository<dt_outstockinfo> Repository => BaseDal;
        public dt_outstockinfoService(IRepository<dt_outstockinfo> BaseDal, IMapper mapper) : base(BaseDal)
        {
            _mapper = mapper;
        }
    }
}