public VendorAddressController(IVendorRepository vendorRepository, IVendorAddressCategoryRepository vendoraddresscategoryRepository, ICountryRepository countryRepository, IStateRepository stateRepository, IVendorAddressRepository vendoraddressRepository)
 {
     this.vendorRepository = vendorRepository;
     this.vendoraddresscategoryRepository = vendoraddresscategoryRepository;
     this.countryRepository = countryRepository;
     this.stateRepository = stateRepository;
     this.vendoraddressRepository = vendoraddressRepository;
 }
 public VendorAddressCategoriesController(IVendorAddressCategoryRepository vendoraddresscategoryRepository)
 {
     this.vendoraddresscategoryRepository = vendoraddresscategoryRepository;
 }