Exemple #1
0
 public ChatsController(MyDbContext chat, IConfiguration conf)
 {
     _conf      = conf;
     this._repo = new ChatsMessageService(chat, _conf);
 }
Exemple #2
0
 public FoldersController(MyDbContext EntitiesService, IConfiguration conf)
 {
     _conf      = conf;
     this._repo = new FoldersService(EntitiesService);
     this._chat = new ChatsMessageService(EntitiesService, conf);
 }