Вроде усе

This commit is contained in:
2025-06-07 17:57:26 +04:00
parent f91a3cfca8
commit 50491ec87b
16 changed files with 707 additions and 34 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClassLibrary1;
public interface IAuthorStorageContract
{
List<Author> GetList();
Author? GetElementById(string id);
Author? GetElementByFIO(string fio);
Author? GetElementByEmail(string email);
void AddElement(Author author);
void UpdElement(Author author);
void DelElement(string id);
}