ISEbd-21_Tukaeva_A_A_School/School/SchoolContracts/BusinessLogicsContracts/IPaymentLogic.cs

20 lines
473 B
C#

using SchoolContracts.BindingModel;
using SchoolContracts.SearchModel;
using SchoolContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.BusinessLogicsContracts
{
public interface IPaymentLogic
{
List<PaymentViewModel>? ReadList(PaymentSearchModel? model);
void CreateOrUpdate(PaymentBindingModel model);
void Delete(PaymentBindingModel model);
}
}