| 12345678910111213141516171819202122 |
- using EFCore.Sharding;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.Extensions.Caching.Distributed;
- using Net6Demo_Api.Entity;
- using Net6Demo_Api.IBusiness;
- using Net6Demo_Api.Util;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Net6Demo_Api.Business
- {
- public class DepartmentBusiness : BaseBusiness<T_Sys_Department>, IDepartmentBusiness, ITransientDependency
- {
- public DepartmentBusiness(IDbAccessor db, IDistributedCache cache) : base(db, cache, true)
- {
- }
- }
- }
|