| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 | 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<PlaceHolderFormat>
    {
        private readonly DataContext dBContext;
        public PlaceHolderFormatRepository(DataContext _dataContext)
        {
            dBContext = _dataContext;
        }
        public List<PlaceHolderFormat> Get(Func<PlaceHolderFormat, bool> where)
        {
            throw new NotImplementedException();
        }
        public List<PlaceHolderFormat> GetAll()
        {
            return dBContext.PlaceHolderFormats.ToList();
        }
        public PlaceHolderFormat GetDetailed(Func<PlaceHolderFormat, bool> first)
        {
            throw new NotImplementedException();
        }
        public List<PlaceHolderFormat> GetDetailedAll()
        {
            throw new NotImplementedException();
        }
        public void Insert(PlaceHolderFormat item)
        {
            throw new NotImplementedException();
        }
        public void Insert(IEnumerable<PlaceHolderFormat> items)
        {
            throw new NotImplementedException();
        }
        public int NewId()
        {
            throw new NotImplementedException();
        }
        public void Remove(PlaceHolderFormat item)
        {
            throw new NotImplementedException();
        }
        public void Remove(IEnumerable<PlaceHolderFormat> 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();
        }
    }
}
 |