public RealEstatePropertyRepository(IRealEstateContext realEstateContext) : base(realEstateContext)
 {
 }
 public RealEstateNotificationRepository(IRealEstateContext realEstateContext) : base(realEstateContext)
 {
 }
 public DefaultController(IRealEstateContext context)
 {
     _context = context;
 }
예제 #4
0
 public RepositoryBase(IRealEstateContext realEstateContext)
 {
     RealEstateContext = realEstateContext;
 }