public DatasetService(IUserProfileDAO userProfileDAO, IDatasetDAO datasetDAO, IImageDAO imageDAO) { this.userProfileDAO = userProfileDAO; this.datasetDAO = datasetDAO; this.imageDAO = imageDAO; }
public UserProfileService(IUserProfileDAO userProfileDAO) { this.userProfileDAO = userProfileDAO; }