public ChatService() { if (_memoryCashe == null) { _memoryCashe = new InMemoryCashe(); } if (_repository == null) { _repository = new Repository(_memoryCashe); } }
internal Repository(InMemoryCashe cashe) { memoryCashe = cashe; }