public PropertyApplication(IPropertyRepository propertyRepository, IMapper mapper, IPropertyImageRepository propertyImageRepository,
                            IContractRepository contractRepository)
     : base(propertyRepository, mapper)
 {
     this.propertyRepository      = propertyRepository;
     this.contractRepository      = contractRepository;
     this.propertyImageRepository = propertyImageRepository;
 }
 public PropertyImageService(IPropertyImageRepository propertyImageRepository)
 {
     _propertyImageRepository = propertyImageRepository;
 }
 public PropertyImageManager(IPropertyImageRepository propertyImageRepository)
 {
     _propertyImageRepository = propertyImageRepository;
 }
 public PropertyImageController(IPropertyImageRepository repo)
 {
     _Repo = repo;
 }
 public GetUserProperty(IPropertyImageRepository propertyImageRepository, IPropertyRepository propertyRepository)
 {
     _propertyImageRepository = propertyImageRepository;
     _propertyRepository      = propertyRepository;
 }