public CompanyService(ISystemAddressService addressService, ISystemPhoneNumberService phoneNumberService, ISystemWebsiteService websiteService, IHashingService hashingService, ISystemUserManager systemUsersManager, IConfiguration configuration, IWebHostEnvironment webHostEnvironment) : base(configuration, webHostEnvironment)
 {
     _addressService     = addressService;
     _phoheNumberService = phoneNumberService;
     _websiteService     = websiteService;
     _hashingService     = hashingService;
     _systemUsersManager = systemUsersManager;
     _configuration      = configuration;
     _webHostEnvironment = webHostEnvironment;
 }
 public CustomerService(IAdminService adminService, ISystemService systemService, IAdminLookupItemsService adminLookupItemsService, IAdminEmailAddressService adminEmailAddressService, IAdminPhoneNumberService adminPhoneNumberService, IAdminUsersService adminUsersService, ISystemAddressService systemAddressService, ISystemPhoneNumberService systemPhoneNumberService, ISystemWebsiteService systemWebsiteService, ISystemPointOfContactService systemPointOfContactService, ISystemLookupItemService systemLookupItemService, ISystemUserService systemUserService, ICustomersManager customersManager, IHashingService hashingService, IConfiguration configuration, IWebHostEnvironment webHostEnvironment) : base(configuration, webHostEnvironment)
 {
     _hashingService              = hashingService;
     _systemService               = systemService;
     _adminService                = adminService;
     _adminLookupItemsService     = adminLookupItemsService;
     _adminEmailAddressService    = adminEmailAddressService;
     _adminPhoneNumberService     = adminPhoneNumberService;
     _adminUsersService           = adminUsersService;
     _systemAddressService        = systemAddressService;
     _systemPhoneNumberService    = systemPhoneNumberService;
     _systemWebsiteService        = systemWebsiteService;
     _systemPointOfContactService = systemPointOfContactService;
     _systemLookupItemService     = systemLookupItemService;
     _systemUserService           = systemUserService;
     _customersManager            = customersManager;
     _configuration               = configuration;
     _webHostEnvironment          = webHostEnvironment;
 }