| 1234567891011121314151617181920 |
- using Abp.Modules;
- using Business;
- using Business.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Buissness.UnitTest
- {
- [DependsOn(
- typeof(BusinessEntityFrameworkCoreModule),
- typeof(BusinessApplicationModule)
- )]
- public class UnitTestModule: AbpModule
- {
- }
- }
|