27 lines
477 B
C#
27 lines
477 B
C#
using ChouBox.Code.AppExtend;
|
|
using ChouBox.Model.Entities;
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Primitives;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
using StackExchange.Redis;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ChouBox.Code.Goods;
|
|
|
|
public class GoodsBLL : ChouBoxCodeBase
|
|
{
|
|
public GoodsBLL(IServiceProvider serviceProvider) : base(serviceProvider)
|
|
{
|
|
}
|
|
|
|
}
|
|
|