using BeautySalonContracts.BindingModels; using BeautySalonContracts.StorageContracts; using BeautySalonContracts.ViewModels; namespace BeautySalonDatabaseImplement.Implements { internal class PurchaseStorage : IPurchaseStorage { public PurchaseViewModel Deleted(PurchaseBindingModel model) { throw new NotImplementedException(); } public PurchaseViewModel GetElement(PurchaseBindingModel model) { throw new NotImplementedException(); } public List GetFilteredList(PurchaseBindingModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public PurchaseViewModel Insert(PurchaseBindingModel model) { throw new NotImplementedException(); } public PurchaseViewModel Update(PurchaseBindingModel model) { throw new NotImplementedException(); } } }