public DictController(ILogger <DictController> logger, Models.Repository dictionary) { _logger = logger; this.db = dictionary; }
public JsonContactsController(IPhoneDictionary jsonPhoneDictionary) { _jsonPhoneDictionary = jsonPhoneDictionary; }
public TSController(IPhoneDictionary dictionary) { this.phoneDictionary = dictionary; }
public SqlContactsController(IPhoneDictionary sqlPhoneDictionary) { _sqlPhoneDictionary = sqlPhoneDictionary; }
public DictController(IPhoneDictionary <Contact> phones) { this.phones = phones; }
public DictController(IPhoneDictionary phoneDictionary) { this.PersonModel = phoneDictionary; }
public DictController(IPhoneDictionary dictionary) { db = dictionary; }
public DictController(IPhoneDictionary recordRepository) { this.recordRepository = recordRepository; }