26 lines
636 B
C#
26 lines
636 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VetClinicBusinessLogic.BindingModels;
|
|
using VetClinicBusinessLogic.ViewModels;
|
|
|
|
namespace VetClinicBusinessLogic.Interfaces
|
|
{
|
|
public interface IServiceStorage
|
|
{
|
|
List<ServiceViewModel> GetFullList();
|
|
|
|
List<ServiceViewModel> GetFilteredList(ServiceBindingModel model);
|
|
|
|
ServiceViewModel GetElement(ServiceBindingModel model);
|
|
|
|
void Insert(ServiceBindingModel model);
|
|
|
|
void Update(ServiceBindingModel model);
|
|
|
|
void Delete(ServiceBindingModel model);
|
|
}
|
|
}
|