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.
31 lines
495 B
31 lines
495 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Volo.Abp.Domain.Repositories;
|
|
using Win_in.Sfs.Basedata.Domain;
|
|
|
|
namespace Win_in.Sfs.Basedata.Domain.Caches;
|
|
public static class Cache
|
|
{
|
|
|
|
public static List<Bom> Boms = new List<Bom>();
|
|
|
|
|
|
public static void Clear()
|
|
{
|
|
Boms.Clear();
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|