26 lines
627 B
C#
26 lines
627 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
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);
|
|
}
|
|
}
|