Skip to content

Commit 2517c1b

Browse files
authored
Merge pull request #727 from bcgov/ricander
Removing assignment of parent platform type to sub platform type. Onl…
2 parents 729140a + 3be86f2 commit 2517c1b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

server/StrDss.Data/Repositories/OrganizationRepository.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,6 @@ public async Task<DssOrganization> CreatePlatformSubAsync(PlatformSubCreateDto d
271271
entity.OrganizationCd = dto.OrganizationCd.ToUpperInvariant();
272272
entity.OrganizationType = OrganizationTypes.Platform;
273273

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-
278274
await _dbSet.AddAsync(entity);
279275

280276
return entity;

0 commit comments

Comments
 (0)