using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using UnivateProperties_API.Context; using UnivateProperties_API.Model.Misc; namespace UnivateProperties_API.Repository.Misc { public class PlaceHolderFormatRepository : IRepository { private readonly DataContext dBContext; public PlaceHolderFormatRepository(DataContext _dataContext) { dBContext = _dataContext; } public List Get(Func where) { throw new NotImplementedException(); } public List GetAll() { return dBContext.PlaceHolderFormats.ToList(); } public PlaceHolderFormat GetDetailed(Func first) { throw new NotImplementedException(); } public List GetDetailedAll() { throw new NotImplementedException(); } public void Insert(PlaceHolderFormat item) { throw new NotImplementedException(); } public void Insert(IEnumerable items) { throw new NotImplementedException(); } public int NewId() { throw new NotImplementedException(); } public void Remove(PlaceHolderFormat item) { throw new NotImplementedException(); } public void Remove(IEnumerable items) { throw new NotImplementedException(); } public void RemoveAtId(int item) { throw new NotImplementedException(); } public void Save() { throw new NotImplementedException(); } public void Update(PlaceHolderFormat item) { throw new NotImplementedException(); } } }