17 lines
393 B
C#
17 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ClassLibrary1;
|
|
|
|
public interface IArticleBusinessLogicContract
|
|
{
|
|
List<Article> GetAllArticles();
|
|
Article GetArticleByData(string data);
|
|
void InsertArticle(Article article);
|
|
void UpdateArticle(Article article);
|
|
void DeleteArticle(string id);
|
|
}
|