Esempio n. 1
0
 public static async Task <Unit> DeleteAsset(AssetDeleteHandler systemUnderTest, string application, string id, string aliasCredentials = "aut-developer")
 {
     return(await systemUnderTest.Handle(new AssetDeleteRequest()
     {
         AliasCredentials = aliasCredentials,
         Application = application,
         Id = id,
     }, CancellationToken.None));
 }