Files
Course/ClassLibrary1/IAuthorBusinessLogicContract.cs
2025-06-07 17:57:26 +04:00

17 lines
381 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClassLibrary1;
public interface IAuthorBusinessLogicContract
{
List<Author> GetAllAuthors();
Author GetAuthorByData(string data);
void InsertAuthor(Author author);
void UpdateAuthor(Author author);
void DeleteAuthor(string id);
}