public StoreBusinessLogic()
 {
     _repo            = new StoreRepository();
     _userbusiness    = new UserBusinessLogic();
     _country         = new CountryRepository();
     _city            = new CityRepository();
     _district        = new DistrictRepository();
     _productbusiness = new ProductBusinessLogic();
     _mess            = new MessageBusinessLogic();
 }
 public ProductTypeBusiness()
 {
     _repo    = new ProductTypeRepository();
     _product = new ProductBusinessLogic();
 }