We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 729140a + 3be86f2 commit 2517c1bCopy full SHA for 2517c1b
server/StrDss.Data/Repositories/OrganizationRepository.cs
@@ -271,10 +271,6 @@ public async Task<DssOrganization> CreatePlatformSubAsync(PlatformSubCreateDto d
271
entity.OrganizationCd = dto.OrganizationCd.ToUpperInvariant();
272
entity.OrganizationType = OrganizationTypes.Platform;
273
274
- //Per acceptance criteria fo DSS-223. set subsidary platform type to parent platform type on create
275
- var parentOrg = await GetPlatform(dto.ManagingOrganizationId);
276
- entity.PlatformType = parentOrg.PlatformType;
277
-
278
await _dbSet.AddAsync(entity);
279
280
return entity;
0 commit comments