123456789101112131415161718192021222324252627282930 |
- using AutoMapper;
- using OASystem.Domain.Entities.Resource;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Infrastructure.Repositories.Resource
- {
-
-
-
-
- public class BasicInsuranceCostRepository:BaseRepository<Res_BasicInsuranceCost, Res_BasicInsuranceCost>
- {
- private readonly IMapper _mapper;
-
-
-
-
-
- public BasicInsuranceCostRepository(SqlSugarClient sqlSugar, IMapper mapper) : base(sqlSugar)
- {
- _mapper = mapper;
- }
- }
- }
|