2023-04-08 19:55:06 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2023-04-08 21:09:06 +04:00
|
|
|
|
using System.Text;
|
2023-04-08 19:55:06 +04:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using VetClinicBusinessLogic.BindingModels;
|
|
|
|
|
using VetClinicBusinessLogic.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace VetClinicBusinessLogic.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IClientStorage
|
|
|
|
|
{
|
|
|
|
|
List<ClientViewModel> GetFullList();
|
|
|
|
|
|
|
|
|
|
List<ClientViewModel> GetFilteredList(ClientBindingModel model);
|
|
|
|
|
|
|
|
|
|
ClientViewModel GetElement(ClientBindingModel model);
|
|
|
|
|
|
|
|
|
|
void Insert(ClientBindingModel model);
|
|
|
|
|
|
|
|
|
|
void Update(ClientBindingModel model);
|
|
|
|
|
|
|
|
|
|
void Delete(ClientBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|