- using Quadarax.Foundation.Core.Data.Interface.Entity;
- namespace qdr.fnd.core.test
- {
- public abstract class DtoTest<TDto> : BaseTest where TDto : IDto, new()
- {
- protected TDto Dto { get; private set; } = default!;
- protected override void OnSetup()
- {
- Dto = new TDto();
- }
- }
- }
|