11 lines
298 B
C#
11 lines
298 B
C#
|
using Volo.Abp.Modularity;
|
|||
|
|
|||
|
namespace HospitalManagementSystem;
|
|||
|
|
|||
|
/* Inherit from this class for your domain layer tests. */
|
|||
|
public abstract class HospitalManagementSystemDomainTestBase<TStartupModule> : HospitalManagementSystemTestBase<TStartupModule>
|
|||
|
where TStartupModule : IAbpModule
|
|||
|
{
|
|||
|
|
|||
|
}
|