Felbook.Models.ProfileViewModel.ProfileViewModel C# (CSharp) 메소드

ProfileViewModel() 공개 메소드

public ProfileViewModel ( User user, User currentUser, IImageService imageService, IFileService fileService ) : System
user User
currentUser User
imageService IImageService
fileService IFileService
리턴 System
        public ProfileViewModel(User user, User currentUser, IImageService imageService, IFileService fileService)
        {
            this.user = user;
            this.currentUser = currentUser;
            this.imageOutputHelper = new ImageOutputHelper(imageService);
            this.fileOutputHelper = new FileOutputHelper(fileService);
        }