2024-04-18 19:35:33 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-04-19 19:30:16 +04:00
|
|
|
|
using UniversityContracts.BindingModels;
|
2024-04-18 19:35:33 +04:00
|
|
|
|
using UniversityContracts.SearchModels;
|
|
|
|
|
using UniversityContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
2024-04-21 19:12:38 +04:00
|
|
|
|
public interface IAttestationLogic
|
2024-04-18 19:35:33 +04:00
|
|
|
|
{
|
|
|
|
|
List<AttestationViewModel>? ReadList(AttestationSearchModel? model);
|
2024-04-25 17:00:45 +04:00
|
|
|
|
bool CreateAttestation(AttestationBindingModel model);
|
2024-04-29 19:06:11 +04:00
|
|
|
|
bool DeleteAttestation(AttestationBindingModel model);
|
|
|
|
|
bool UpdateAttestation(AttestationBindingModel model);
|
2024-04-25 17:00:45 +04:00
|
|
|
|
bool SetPass(AttestationBindingModel model);
|
|
|
|
|
bool SetNotPass(AttestationBindingModel model);
|
2024-04-26 00:03:46 +04:00
|
|
|
|
bool SetTwo(AttestationBindingModel model);
|
|
|
|
|
bool SetThree(AttestationBindingModel model);
|
|
|
|
|
bool SetFour(AttestationBindingModel model);
|
|
|
|
|
bool SetFive(AttestationBindingModel model);
|
2024-04-25 17:00:45 +04:00
|
|
|
|
|
2024-04-18 19:35:33 +04:00
|
|
|
|
}
|
|
|
|
|
}
|