This commit is contained in:
2025-08-23 16:27:17 +08:00
parent 97e85a054f
commit de4a33e00e
25 changed files with 1244 additions and 323 deletions

View File

@@ -0,0 +1,20 @@
using MyCode.Project.Domain.Message.Request.JackYun;
using MyCode.Project.Domain.Repositories;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Infrastructure.JackYun;
using System;
namespace MyCode.Project.Services.Implementation
{
public class ZhuBinService : ServiceBase //, IZhuBinService
{
private IYTKJTShopParameterRepository _yTKJTShopParameterRepository;
public ZhuBinService(IYTKJTShopParameterRepository yTKJTShopParameterRepository)
{
_yTKJTShopParameterRepository = yTKJTShopParameterRepository;
}
}
}