17 lines
381 B
C#
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);
|
|
}
|