예제 #1
0
 public DictController(ILogger <DictController> logger, Models.Repository dictionary)
 {
     _logger = logger;
     this.db = dictionary;
 }
 public JsonContactsController(IPhoneDictionary jsonPhoneDictionary)
 {
     _jsonPhoneDictionary = jsonPhoneDictionary;
 }
예제 #3
0
 public TSController(IPhoneDictionary dictionary)
 {
     this.phoneDictionary = dictionary;
 }
예제 #4
0
 public SqlContactsController(IPhoneDictionary sqlPhoneDictionary)
 {
     _sqlPhoneDictionary = sqlPhoneDictionary;
 }
예제 #5
0
 public DictController(IPhoneDictionary <Contact> phones)
 {
     this.phones = phones;
 }
예제 #6
0
 public DictController(IPhoneDictionary phoneDictionary)
 {
     this.PersonModel = phoneDictionary;
 }
예제 #7
0
 public DictController(IPhoneDictionary dictionary)
 {
     db = dictionary;
 }
예제 #8
0
 public DictController(IPhoneDictionary recordRepository)
 {
     this.recordRepository = recordRepository;
 }