public AdministrationController(
     IContactDatastore contactDatastore,
     ICompanyDatastore companyDatastore,
     IUsageDatastore usageDatastore)
 {
     _contactDatastore = contactDatastore;
     _companyDatastore = companyDatastore;
     _usageDatastore   = usageDatastore;
 }
 public TextSummaryController(
     IHttpContextAccessor context,
     IContactDatastore contactDatastore,
     IUsageDatastore usageDatastore,
     IHash hash)
 {
     _context          = context;
     _contactDatastore = contactDatastore;
     _usageDatastore   = usageDatastore;
     _hash             = hash;
 }