You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
804 B
28 lines
804 B
3 years ago
|
using BBWY.Common.Http;
|
||
|
using BBWY.Common.Models;
|
||
|
using BBWY.Server.Model;
|
||
|
using BBWY.Server.Model.Dto;
|
||
|
using Microsoft.Extensions.Options;
|
||
|
using Yitter.IdGenerator;
|
||
|
|
||
|
namespace BBWY.Server.Business
|
||
|
{
|
||
|
public class EvaluationAssistantBusiness : BasePlatformRelayBusiness, IDenpendency
|
||
|
{
|
||
|
private IFreeSql fsql;
|
||
|
|
||
|
private IIdGenerator idGenerator;
|
||
|
|
||
|
public EvaluationAssistantBusiness(RestApiService restApiService, IOptions<GlobalConfig> options, YunDingBusiness yunDingBusiness, IFreeSql fsql, IIdGenerator idGenerator) : base(restApiService, options, yunDingBusiness)
|
||
|
{
|
||
|
this.fsql = fsql;
|
||
|
this.idGenerator = idGenerator;
|
||
|
}
|
||
|
|
||
|
public void AddOrEditGiftTemplate(AddOrEditGiftTemplateRequest request)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|