17 lines
403 B
C#
17 lines
403 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using Furion.DependencyInjection;
|
||
|
||
namespace Yi.Framework.Module.WebFirstManager.Domain
|
||
{
|
||
/// <summary>
|
||
/// 数据库领域服务,与数据库相关,同步到数据库,web to db ,code to db
|
||
/// </summary>
|
||
public class DataBaseManger : ITransient
|
||
{
|
||
}
|
||
}
|