Добавлена поддержка нескольких параметров в кодген

This commit is contained in:
2025-03-07 09:01:21 +03:00
parent c802f337c7
commit 8d082d1ed4
9 changed files with 80 additions and 25 deletions
+10 -2
View File
@@ -1,3 +1,4 @@
using System;
using System.Collections.Generic;
using Example.Shared;
@@ -5,7 +6,6 @@ namespace Example.Backend
{
public class PagesList : IPagesList
{
public IReadOnlyList<IPage> Collection { get; }
public IPage Get(int index)
{
throw new System.NotImplementedException();
@@ -16,9 +16,17 @@ namespace Example.Backend
throw new System.NotImplementedException();
}
public void Set(int index, IPage item)
public void Remove(int index, IPage item)
{
throw new System.NotImplementedException();
}
public event Action<IPage>? OnAdd;
public event Action<IPage>? OnRemove;
public void Dispose()
{
// TODO release managed resources here
}
}
}