45 lines
1.1 KiB
C#
45 lines
1.1 KiB
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 DinerListImplement.Implements {
|
|
public class ClientStorage : IClientStorage {
|
|
|
|
private readonly DataListSingleton _source;
|
|
|
|
public ClientStorage() {
|
|
_source = DataListSingleton.GetInstance();
|
|
}
|
|
|
|
public ClientViewModel? Insert(ClientBindingModel model) {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ClientViewModel? Update(ClientBindingModel model) {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|