Илья Федотов c2faa8cfe5 Base.01
2024-05-01 12:51:35 +04:00

38 lines
995 B
C#

using DinerContracts.BindingModels;
using DinerContracts.SearchModels;
using DinerContracts.StoragesContracts;
using DinerContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DinerFileImplement.Implements {
public class ClientStorage : IClientStorage {
public ClientViewModel? Delete(ClientBindingModel model) {
throw new NotImplementedException();
}
public ClientViewModel? GetElement(ClientSearchModel model) {
throw new NotImplementedException();
}
public List<ClientViewModel> GetFilteredList(ClientSearchModel model) {
throw new NotImplementedException();
}
public List<ClientViewModel> GetFullList() {
throw new NotImplementedException();
}
public ClientViewModel? Insert(ClientBindingModel model) {
throw new NotImplementedException();
}
public ClientViewModel? Update(ClientBindingModel model) {
throw new NotImplementedException();
}
}
}