WebChat.Tests.MockedObjects.WebChatDataMock.WebChatDataMock C# (CSharp) Метод

WebChatDataMock() публичный Метод

public WebChatDataMock ( ) : System
Результат System
        public WebChatDataMock()
        {
            this.users = new GenericRepositoryMock<ApplicationUser>();
            this.rooms = new GenericRepositoryMock<Room>();
            this.messages = new GenericRepositoryMock<Message>();
            this.history = new GenericRepositoryMock<UserRoomSession>();
            this.sessions = new GenericRepositoryMock<UserSession>();
            this.tags = new GenericRepositoryMock<Tag>();
            this.notifications = new GenericRepositoryMock<Notification>();

            SeedMockedUsers(this);
            SeedMockedMessages(this);
            SeedMockedRooms(this);
        }