public void Dto_Test() { var dto = DtoFactory.Dto <IMyObj>(); dto.A = 1; dto.A.Should().Be(1); }
public object GetDtoDst() { if (DstType.IsInterface) { return(DtoFactory.Dto(DstType)); } return(Activator.CreateInstance(DstType)); }
public void Dto_ForChildInterface() { var dto = DtoFactory.Dto <IMyChildObj>(); dto.A = 1; dto.B = 2; dto.A.Should().Be(1); dto.B.Should().Be(2); }