Пример #1
0
 public ConversationService(IConversationDbService conversationDbService, IPhotosService photosService, IApplicationUserManager applicationUserManager, AppConfiguration appConfiguration)
 {
     this.conversationDbService  = conversationDbService;
     this.photosService          = photosService;
     this.applicationUserManager = applicationUserManager;
     this.appConfiguration       = appConfiguration;
 }
 public ConversationsDbServiceTests(MobileSecondHandContextForTestsFixture fixture)
 {
     this.fixture     = fixture;
     serviceUnderTest = new ConversationDbService(this.fixture.MobileSecondHandContextOptions);
 }
		public ConversationsDbServiceTests(MobileSecondHandContextForTestsFixture fixture)
		{
			this.fixture = fixture;
			serviceUnderTest = new ConversationDbService(this.fixture.MobileSecondHandContextOptions);
		}
		public ConversationService(IConversationDbService conversationDbService)
		{
			this.conversationDbService = conversationDbService;
		}